-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 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
{
"name": "rabbitnode",
"version": "1.0.0",
"description": "",
"main": "bin/www",
"scripts": {
"start": "npm run build && npm run clear-log && node ./bin/www",
"build": "rimraf build/ && babel src/ --out-dir build/",
"start-sv-test": "nodemon --exec babel-node src/server_test.js --ignore 'src/' --ignore 'build/'",
"start-cl-test": "nodemon --exec babel-node bin/www --ignore 'src/' --ignore 'build/'",
"clear-log": "rimraf logs/messages_dev/ && rimraf logs/messages/ ",
"start-build": "node ./bin/www",
"test": "mocha"
},
"author": "peerapat_suk",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "7.0.0",
"amqplib": "0.5.2",
"cookie-parser": "1.4.3",
"debug": "4.1.0",
"express": "4.16.3",
"fs": "0.0.1-security",
"http-errors": "1.7.1",
"morgan": "1.9.1",
"nodemon": "1.18.4",
"path": "0.12.7",
"pug": "2.0.3",
"rotating-file-stream": "1.3.7",
"util": "0.11.0"
},
"devDependencies": {
"@babel/cli": "7.0.0",
"@babel/core": "7.0.1",
"@babel/node": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/register": "7.0.0",
"eslint-config-prettier": "3.1.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"mocha": "5.2.0",
"prettier": "1.14.3",
"rimraf": "2.6.2",
"util.log": "0.0.26"
}
}