forked from next-in-line/longtrail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.69 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.69 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "longtrail",
"version": "0.0.1",
"private": true,
"engines": {
"node": "10"
},
"dependencies": {
"app-module-path": "^2.2.0",
"ava": "^0.25.0",
"await-timeout": "^0.3.0",
"axios": "^0.18.0",
"bcrypt": "^2.0.1",
"bluebird": "^3.5.3",
"body-parser": "^1.18.2",
"bull": "^3.4.8",
"chalk": "^2.4.1",
"clean-deep": "^3.0.2",
"clear-require": "^2.0.0",
"concurrently": "^4.1.0",
"database-cleaner": "^1.2.0",
"diff": "^3.5.0",
"diff-json-structure": "^1.0.8",
"express": "^4.16.3",
"faker": "^4.1.0",
"find-my-way": "^2.0.1",
"graphql": "^14.0.2",
"handlebars": "^4.0.12",
"icepick": "^2.3.0",
"immutable": "^3.8.2",
"install": "^0.12.1",
"ioredis": "^4.2.0",
"is-empty": "^1.2.0",
"knex": "^0.14.6",
"knex-migrate": "^1.6.1",
"lodash": "^4.17.11",
"lodash-inflection": "^1.5.0",
"luxon": "^1.3.0",
"mailgun-js": "^0.22.0",
"md5": "^2.2.1",
"mock-require": "^3.0.2",
"moment": "^2.22.2",
"moment-timezone": "^0.5.23",
"mustache": "^3.0.0",
"nyc": "^12.0.2",
"objection": "^1.1.10",
"objection-db-errors": "^1.0.0",
"odata-client": "^0.6.11",
"password-validator": "^4.1.1",
"pg": "^7.4.2",
"pg-connection-string": "^2.0.0",
"pg-hstore": "^2.3.2",
"pipe-functions": "^1.3.0",
"plivo": "^4.0.4",
"pluralize": "^7.0.0",
"pm2": "^2.10.3",
"querystring": "^0.2.0",
"randomstring": "^1.1.5",
"redis": "^2.8.0",
"repl.history": "^0.1.4",
"require-reload": "^0.2.2",
"seamless-immutable": "^7.1.3",
"should": "^13.2.1",
"stack-trace": "^0.0.10",
"strong-params": "^0.7.1",
"url-pattern-match": "^1.0.5",
"uuid": "^3.3.2",
"wipe-node-cache": "^1.1.0"
},
"devDependencies": {
"local-repl": "^3.1.0",
"nodemon": "^1.17.3"
},
"scripts": {
"dev": "nodemon ./index.js",
"dev:workers": "SCHEDULING=false nodemon ./index.js",
"s": "yarn server",
"console": "WORKERS=false INVALID_KEYS=appLoad REPL=true node --experimental-repl-await ./repl",
"c": "yarn console",
"start": "WORKERS=false node ./index.js",
"start:workers": "SCHEDULING=false pm2 start ./index.js -i 4 --name workers",
"restart:workers": "SCHEDULING=false pm2 restart workers",
"generate": "node ./generate.js",
"db:migrate": "npx knex-migrate up",
"db:rollback": "npx knex-migrate down",
"db:seed": "INVALID_KEYS=appLoad node ./seed.js",
"db:drop": "NODE_ENV=development node ./db/bootstrap/drop.js",
"db:create": "NODE_ENV=development node ./db/bootstrap/create.js",
"db:reset": "npx knex-migrate redo && yarn db:seed",
"test": "NODE_ENV=test npx ava test/**/*.spec.js test/**/**/*.spec.js --debug --verbose --serial --concurrency 10 --timeout 2000",
"docs:build": "WRITE_SPEC=true NODE_ENV=test npx ava test/**/*.spec.js test/**/**/*.spec.js --debug --verbose --serial --timeout 2000",
"docs:render": "mustache api.json docs/template.mustache > docs/index.html",
"docs:generate": "yarn docs:build && yarn docs:render",
"test:watch": "NODE_ENV=test npx ava test/**/*.spec.js test/**/**/*.spec.js --watch --debug --verbose --serial --timeout 2000",
"test:coverage": "NODE_ENV=test npx nyc --reporter=html --reporter=text ava test/**/*.spec.js test/**/**/*.spec.js --debug --verbose --serial --timeout 2000"
}
}