-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "websocket-server",
"version": "5.0.0",
"description": "",
"keywords": [],
"author": "Daiwei Lu <daiweilu123@gmail.com> (http://daiwei.lu/)",
"license": "MIT",
"engines": {
"node": "6.3.1"
},
"dependencies": {
"@starboard/log": "2.0.0",
"@starboard/models": "4.0.0",
"@starboard/redis": "2.0.0",
"@starboard/starboard-ui": "7.0.5",
"bluebird": "3.4.6",
"co": "4.6.0",
"convict": "1.4.0",
"cookies": "0.6.1",
"kue": "0.11.1",
"ramda": "0.22.1",
"socket.io": "1.4.8"
},
"devDependencies": {
"eslint": "3.6.1",
"eslint-config-d6u": "1.2.1",
"nodemon": "1.10.2",
"onchange": "3.0.2"
},
"scripts": {
"lint": "eslint src *.js",
"watch:lint": "npm run lint -s; onchange 'src/**/*.js' 'conf.js' -v -- npm run lint -s",
"test": "npm run lint",
"start": "env $(cat env-dev) node --harmony_destructuring --harmony_default_parameters ./src/index.js",
"dev": "nodemon -w src -w config -x 'npm start'",
"postversion": "git push && git push --tags"
}
}