forked from khemtat/codebuddy
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.54 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
{
"name": "codebuddy",
"version": "0.0.0",
"private": true,
"main": "index.js",
"dependencies": {
"asyncawait": "^1.0.6",
"bcrypt": "^1.0.2",
"bluebird": "^3.5.0",
"body-parser": "~1.15.2",
"chalk": "^1.1.3",
"code-mirror-themes": "^1.0.0",
"connect-flash": "^0.1.1",
"connect-redis": "^3.2.0",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"dotenv": "^4.0.0",
"express": "~4.14.0",
"express-session": "^1.15.2",
"express-validator": "^3.2.0",
"ioredis": "^2.5.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"moment-timer": "^1.1.5",
"mongoose": "^4.8.3",
"mongoose-mongodb-errors": "0.0.2",
"morgan": "~1.7.0",
"node-gyp": "^3.6.2",
"node-pty": "^0.6.10",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pug": "~2.0.0-beta6",
"redis": "^2.7.1",
"require_optional": "^1.0.1",
"serve-favicon": "~2.3.0",
"shortid": "^2.2.8",
"socket.io": "^1.7.3",
"validator": "^7.0.0",
"winston": "^2.3.1",
"xterm": "^2.5.0"
},
"devDependencies": {
"archiver": "^2.1.1",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js --ignore public/",
"build": "npm install -g nodemon; npm run dev"
}
}