-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
60
61
62
63
64
65
66
67
68
{
"name": "docs.hackairan.com",
"description": "HackaIran documents",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start:watch": "nodemon ./bin/www",
"bundle": "webpack",
"bundle:watch": "webpack --watch",
"production:start": "pm2 start ./bin/www --name docs.hackairan.com",
"production:restart": "pm2 restart docs.hackairan.com",
"production:stop": "pm2 stop docs.hackairan.com",
"production:delete": "pm2 delete docs.hackairan.com",
"pull": "git pull && npm run production:restart"
},
"author": "HackaIran Team",
"repository": {
"type": "git",
"url": "git+https://github.com/hackairan/docs.hackairan.com.git"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.15.5",
"express-session": "^1.15.6",
"hoek": "^5.0.3",
"md5": "^2.2.1",
"moment": "^2.22.1",
"mongoose": "^4.12.1",
"mongoose-validator": "^2.0.2",
"morgan": "~1.9.0",
"node-sass-middleware": "^0.11.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.0",
"pretty-error": "^2.1.1",
"pug": "^2.0.1",
"remarkable": "^1.7.1",
"serve-favicon": "~2.4.5"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.11",
"node-sass": "^4.9.0",
"nodemon": "^1.17.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"bugs": {
"url": "https://github.com/hackairan/docs.hackairan.com/issues"
},
"homepage": "https://github.com/hackairan/docs.hackairan.com#readme",
"nodemonConfig": {
"ignore": [
"dist/*",
"client/*",
"views/*"
]
}
}