-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.65 KB
/
package.json
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
{
"name": "kuolun",
"version": "1.0.8",
"description": "a comment system was built by es6 + react + webpack + mongodb",
"main": "server.js",
"scripts": {
"dll": "rm -rf ./dist && webpack --config webpack.dll.js",
"dev": "npm run dll && cross-env NODE_ENV=dev webpack --colors -w --display-error-details",
"pro": "npm run dll && cross-env NODE_ENV=pro webpack --colors",
"server": "cross-env NODE_PORT=5000 nodemon --watch server.js",
"server_SSL": "cross-env NODE_PORT=5443 cross-env IS_SSL=true nodemon --watch server.js"
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
]
},
"author": "Owen",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"express-session": "^1.14.1",
"fox-listener": "^1.0.1",
"highlight.js": "^9.7.0",
"markdown": "^0.5.0",
"marked": "^0.3.6",
"mongoose": "^4.5.8",
"node-uuid": "^1.4.7",
"pm2": "^2.0.12",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-actions": "^0.10.1",
"redux-thunk": "^2.1.0",
"xss": "^0.3.3"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"cross-env": "^4.0.0",
"css-loader": "^0.23.1",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"nodemon": "^1.11.0",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"xss": "^0.3.3"
}
}