-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.15 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.15 KB
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
{
"name": "react-for-beginners",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"webpack-watch": "webpack -w",
"express-server": "node ./server",
"dev": "concurrent --kill-others \"npm run webpack-watch\" \"npm run express-server\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viatsko/react-for-beginners.git"
},
"author": "Valerii Iatsko <dwr@codingbox.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/viatsko/react-for-beginners/issues"
},
"homepage": "https://github.com/viatsko/react-for-beginners#readme",
"dependencies": {
"babel-loader": "^6.2.2",
"babel-plugin-transform-class-properties": "^6.4.0",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"express": "^4.13.4",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"webpack": "^1.12.13"
},
"devDependencies": {
"concurrently": "^1.0.0"
}
}