-
Notifications
You must be signed in to change notification settings - Fork 931
/
Copy pathpackage.json
51 lines (51 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
47
48
49
50
51
{
"name": "react-props-and-state-lab",
"version": "0.1.0",
"private": true,
"devDependencies": {
"fetch-mock": "^5.9.4",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"react-scripts": "^3.3.0",
"react-test-renderer": "^16.0.0",
"webpack": "^4.41.2",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"babel-core": "^6.22.1",
"babel-loader": "8.0.6",
"babel-preset-airbnb": "^2.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-1": "^6.24.1",
"chai": "^3.5.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"expect": "^21.2.1",
"react": "^16.0.0",
"react-dom": "^16.3.3",
"sinon": "^1.17.7",
"whatwg-fetch": "^2.0.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "mocha -w test/helpers.js test/*.js",
"dev:hot": "webpack-dev-server --hot --inline --progress --colors --watch --display-error-details --display-cached --content-base ./",
"test:watch": "npm run test -- --watch",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}