-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 798 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 798 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
{
"name": "react-workshop",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/tbaik/react-workshop.git"
},
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server",
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"jest": "^19.0.2",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"webpack-dev-server": "^2.4.4"
},
"dependencies": {
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"superagent": "^3.5.2",
"webpack": "^2.4.1"
}
}