-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 952 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 952 Bytes
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
{
"name": "vimrc-builder",
"version": "1.0.0",
"dependencies": {
"next": "^12.1.0",
"react": "^17.0.1",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.1",
"react-scripts": "^5.0.1",
"styled-components": "^5.2.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"now-build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "npx now && npx now alias"
},
"engines": {
"node": ">=16"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"flow-bin": "^0.142.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run flow"
}
},
"lint-staged": {
"src/**/*.{js,jsx,css}": [
"prettier --write"
]
}
}