-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "react-event-system-lab",
"version": "0.1.0",
"private": true,
"babel": {
"presets": [
"airbnb",
"env",
"stage-1",
"react"
]
},
"devDependencies": {
"jsdom": "^9.9.1",
"mocha": "^6.2.1",
"react-scripts": "^1.0.7",
"react-test-renderer": "^16.0.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-airbnb": "^2.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-1": "^6.24.1",
"chai": "^4.2.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"mocha-multi": "^1.1.3",
"react": "^16.0.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^16.0.0",
"sinon": "^1.17.7"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "mocha -R mocha-multi --reporter-options spec=-,json=.results.json",
"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"
}
}