-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"name": "codeflower",
"version": "1.0.0",
"description": "CodeFlower",
"main": "src/server.js",
"scripts": {
"dev": "nodemon server --ignore tmp/ --ignore test/",
"dev-remote": "NODE_LOCATION=remote nodemon server --ignore tmp/ --ignore test/",
"prod": "NODE_ENV=production NODE_LOCATION=remote bin/prod.sh",
"prod-local": "pm2 start config/pm2.config.js",
"test-local": "node test/battery; node test/battery --http",
"test-remote": "node test/battery --remote; node test/battery --http --remote",
"ping": "curl https://api.codeflower.la/ping",
"monit": "node misc/pm2/conn-monitor"
},
"repository": {
"type": "git",
"url": "https://github.com/code-flower/cloc-server"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/code-flower/server/issues"
},
"homepage": "",
"dependencies": {
"ascii-progress": "^1.0.5",
"bluebird": "^3.5.0",
"minimist": "^1.2.0",
"mkpath": "^0.1.0",
"module-alias": "^2.0.1",
"pm2": "^2.6.1",
"pmx": "^1.2.0",
"rimraf": "^2.5.2",
"sendgrid": "^5.2.2",
"ws": "^1.1.0"
},
"devDependencies": {},
"_moduleAliases": {
"@config": "./config/app.config",
"@log": "./server/util/logger",
"@util": "./server/util",
"@root": "./"
}
}