forked from markup-mitchell/playground-reactor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 788 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 788 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
{
"name": "playground-react",
"version": "1.0.0",
"description": "React playground",
"main": "index.js",
"scripts": {
"build": "webpack -p",
"start": "webpack-dev-server",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage"
},
"author": "Mark Mitchell",
"license": "ISC",
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.3.2",
"babel-preset-env": "^1.3.2",
"babel-preset-react": "^6.23.0",
"enzyme": "^2.8.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"react-addons-test-utils": "^15.4.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}