-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "oh-fiddle-bits",
"homepage": ".",
"repository": {
"type": "git",
"url": "https://github.com/gregfagan/oh-fiddle-bits.git"
},
"version": "0.2.0",
"private": true,
"dependencies": {
"cross-env": "^5.2.0",
"d3-ease": "^1.0.5",
"gh-pages": "^1.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.14.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-measure": "^2.1.0",
"react-scripts": "2.0.0-next.a671462c",
"styled-components": "^4.0.0-beta.1"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"predeploy": "npm run build",
"start": "cross-env-shell BROWSER=none react-scripts start",
"build": "react-scripts build",
"deploy": "gh-pages -d build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
}
}