-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.26 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.26 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "practice-node-project",
"version": "0.0.1",
"description": "Learn node",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm run clean && babel src -d target --watch",
"compile": "npm run clean && babel src -d target",
"clean": "rm -Rf target",
"dev": "export NODE_ENV=dev && export DEBUG='my:*' && cd target && nodemon server.js",
"web": "webpack --config mywebpack.config.js",
"fe:compile": "cd frontend && webpack --progress",
"fe:watch": "cd frontend && webpack --progress --colors --watch",
"fe:dev": "cd frontend && webpack-dev-server",
"mongo": "mongod --dbpath ~/github/mongodb"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Phuhwei/Node-Learn.git"
},
"author": "Phuhui <lenardlian@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Phuhwei/Node-Learn/issues"
},
"homepage": "https://github.com/Phuhwei/Node-Learn#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-node4": "^2.1.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"react-hot-loader": "^1.3.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"bootstrap-webpack": "0.0.5",
"browser-request": "^0.3.3",
"codemirror": "^5.23.0",
"connect-multiparty": "^2.0.0",
"connect-redis": "^3.1.0",
"css-loader": "^0.26.1",
"debug": "^2.3.3",
"exports-loader": "^0.6.3",
"express": "^4.14.0",
"express-session": "^1.14.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"highlight.js": "^9.9.0",
"imports-loader": "^0.7.0",
"jquery": "^3.1.1",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"marked": "^0.3.6",
"mongoose": "^4.7.1",
"project-core": "^0.1.0",
"react": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-codemirror": "^0.3.0",
"react-dom": "^15.4.1",
"react-router": "^3.0.0",
"serve-static": "^1.11.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"validator": "^6.2.0",
"xss": "^0.3.3"
}
}