-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "PadPad",
"version": "0.1.0",
"private": true,
"dependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"lodash.debounce": "^4.0.8",
"polished": "^1.9.2",
"prettier": "^1.12.1",
"prop-types": "^15.6.1",
"qs": "^6.5.1",
"ramda": "^0.25.0",
"react": "^16.3.1",
"react-click-outside": "tj/react-click-outside",
"react-color": "^2.14.1",
"react-contenteditable": "^2.1.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.3.1",
"react-helmet": "^5.2.0",
"react-scripts": "3.4.0",
"react-transition-group": "^2.3.1",
"styled-components": "^5.0.1"
},
"lint-staged": {
"*.js": [
"prettier --config .prettierrc --write",
"git add"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"coverage": "react-scripts test --env=jsdom --coverage",
"format": "prettier --config .prettierrc --write \"**/*.js\"",
"precommit": "lint-staged"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}