-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "moment-hooks",
"version": "1.2.1",
"description": "Incredibly awesome hooks",
"keywords": [
"react",
"react-hooks",
"momentech",
"hooks",
"query"
],
"author": "Max Moeschinger",
"license": "MIT",
"homepage": "https://github.com/momentechnologies/moment-hooks#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jest.config.json",
"build": "rm -rf lib/ && tsc",
"watch": "rm -rf lib/ && tsc -w",
"format": "prettier --write \"src/**/*\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/momentechnologies/moment-hooks.git"
},
"bugs": {
"url": "https://github.com/momentechnologies/moment-hooks/issues"
},
"devDependencies": {
"@testing-library/react": "^13.3.0",
"@types/jest": "^27.0.3",
"@types/node": "^18.13.0",
"@types/react-router-dom": "^5.3.2",
"@types/resize-observer-browser": "^0.1.6",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"react": "18.x",
"react-dom": "18.x",
"react-router-dom": "^5.2.0",
"ts-jest": "^27.0.7",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.2"
},
"dependencies": {
"query-string": "^8.1.0"
},
"peerDependencies": {
"react": "^16.8.0 || 17.x || 18.x",
"react-dom": "^16.8.0 || 17.x || 18.x"
}
}