-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "react-persist-route",
"version": "0.0.0",
"description": "A module that allows persistence of a route into storage",
"main": "lib/index.js",
"repository": "git@github.com:diogofcunha/react-persist-route.git",
"author": "Diogo Cunha <diogofncunha@gmail.com>",
"license": "MIT",
"scripts": {
"prebuild": "rm -rf lib",
"postbuild": "rm -rf `find lib -name '__mocks__'` && rm -rf `find lib -name '__tests__'`",
"build": "tsc",
"test": "jest --env=jsdom",
"prettier": "prettier --ignore-path .gitignore --write './**/*.{js,jsx,ts,tsx}'"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.4",
"@semantic-release/npm": "^5.0.4",
"@types/jest": "^23.3.2",
"@types/node": "^11.9.5",
"@types/react": "^16.8.4",
"@types/react-dom": "^16.8.2",
"husky": "^1.3.1",
"jest": "^24.1.0",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0",
"promise": "^8.0.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-router": "^4.3.1",
"react-testing-library": "^5.9.0",
"semantic-release": "^15.9.16",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn prettier",
"pre-push": "yarn test"
}
}
}