-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 985 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 985 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": "My-Personal-Web-Page",
"version": "1.0.0",
"description": "My personal webpage",
"main": "index.js",
"scripts": {
"dev": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --port 8000",
"start": "node server.js",
"postinstall": "webpack -p",
"test": "echo \"Error: no test specified\" && exit 1",
"test:watch": "npm run test -- --watch"
},
"author": "Dc Liao",
"license": "ISC",
"dependencies": {
"express": "^4.14.0",
"jquery": "^2.2.1",
"lodash": "^3.10.1",
"react": "^15.4.1",
"react-addons-update": "^15.4.1",
"react-dom": "^15.4.1",
"react-router": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
"babel-preset-stage-1": "^6.1.18"
}
}