-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.05 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pidro-counter",
"version": "0.1.0",
"private": true,
"homepage": "https://andreasnasman.github.io/pidro-counter/",
"scripts": {
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test": "react-scripts test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc"
}
},
"lint-staged": {
"*.{html,json}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"prettier --write",
"tslint -p . -c tslint.json --fix",
"stylelint --fix",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"@types/jest": "^24.0.11",
"@types/lodash.last": "^3.0.6",
"@types/lodash.range": "^3.2.6",
"@types/node": "^11.11.3",
"@types/react": "^16.8.8",
"@types/react-dom": "16.8.2",
"@types/styled-components": "^4.1.12",
"@types/webpack-env": "^1.13.9",
"lodash.last": "^3.0.0",
"lodash.range": "^3.2.0",
"normalize.css": "^8.0.1",
"react": "^16.8.4",
"react-confetti": "^2.7.2",
"react-dom": "^16.8.4",
"react-icons": "^3.5.0",
"react-scripts": "2.1.5",
"react-tiny-popover": "^3.4.2",
"styled-components": "^4.1.3",
"typeface-roboto": "0.0.54",
"typescript": "^3.3.3333"
},
"devDependencies": {
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"stylelint": "^9.10.1",
"stylelint-config-prettier": "^5.0.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.2",
"tslint": "^5.14.0",
"tslint-clean-code": "^0.2.9",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"tslint-sonarts": "^1.9.0"
}
}