-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.93 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
60
61
62
63
64
{
"name": "back",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "npm run lint && LOG_LEVEL=info NODE_ENV=test node ./node_modules/mocha/bin/mocha --recursive test --timeout 10000",
"lint": "node ./node_modules/eslint/bin/eslint.js lib test",
"test:win": "(npm run lint) && (set LOG_LEVEL=fatal& set NODE_ENV=test& node ./node_modules/mocha/bin/mocha --recursive test --timeout 10000)",
"start:prod": "PORT=3001 forever start --minUptime 1000 --spinSleepTime 1000 -o /home/deploy/back-prod/log/out.log -e /home/deploy/back-prod/log/err.log index.js",
"start:dev": "NODE_ENV=development PORT=3002 forever start --minUptime 1000 --spinSleepTime 1000 -o /home/deploy/back-dev/log/out.log -e /home/deploy/back-dev/log/err.log index.js",
"start": "node index",
"stop": "forever stop index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/platform-for-testing/back.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/platform-for-testing/back/issues"
},
"homepage": "https://github.com/platform-for-testing/back#readme",
"dependencies": {
"assert": "^1.4.1",
"bluebird": "^3.5.1",
"bunyan": "^1.8.12",
"convict": "^4.0.1",
"forever": "^0.15.3",
"fs": "0.0.1-security",
"joi": "^11.4.0",
"joi-date-extensions": "^1.1.0",
"jsonwebtoken": "^8.1.0",
"koa": "^2.3.0",
"koa-body": "^2.5.0",
"koa-jwt": "^3.2.2",
"koa-mongo": "^1.2.1",
"koa-passport": "^4.0.1",
"koa-router": "^7.2.1",
"koa2-cors": "^2.0.3",
"mocha": "^4.0.1",
"mongodb": "^2.2.31",
"mongoose": "^4.13.0",
"mongoose-validators": "^0.1.0",
"passport-facebook-token": "^3.3.0",
"should": "^13.1.2",
"supertest": "^3.0.0",
"uuid": "^3.1.0",
"uuid4": "^1.0.0"
},
"engines": {
"node": "8.5.0",
"npm": "5.4.2"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0"
}
}