forked from omegak911/react-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 801 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 801 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
{
"name": "react-exercise",
"version": "1.0.0",
"description": "student-lead react review",
"author": "Kin Chan <xkinchanx@gmail.com>",
"main": "index.js",
"repository": "https://github.com/omegak911/react-exercise.git",
"license": "MIT",
"scripts": {
"start": "open http://localhost:3000 && nodemon server/index.js",
"build": "webpack -w"
},
"dependencies": {
"express": "^4.16.4",
"nodemon": "^1.18.10",
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.6.5",
"babel-core": "6.24.1",
"babel-loader": "7.0.0",
"babel-plugin-react": "1.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "6.24.1",
"webpack": "2.6.1"
}
}