forked from RisingStack/risingstack-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.77 KB
/
package.json
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
{
"name": "risingstack-bootcamp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node .",
"dev": "NODE_ENV=development nodemon .",
"test-web": "NODE_ENV=test PROCESS_TYPE=web mocha 'web/test.setup.js' 'web/**/*.spec.js'",
"test-worker": "NODE_ENV=test PROCESS_TYPE=worker mocha 'worker/test.setup.js' 'worker/**/*.spec.js'",
"test-models": "NODE_ENV=test mocha 'models/test.setup.js' 'models/**/*.spec.js'",
"test-only": "npm run test-web && npm run test-worker && npm run test-models",
"lint": "eslint .",
"test": "npm run lint && npm run test-only",
"migrate-db": "node ./scripts/migrate-db",
"trigger": "node ./scripts/trigger"
},
"repository": "git+https://github.com/RisingStack/risingstack-bootcamp.git",
"author": "Andras Toth <andras.toth@risingstack.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/RisingStack/risingstack-bootcamp/issues"
},
"engines": {
"node": ">=8.1.2"
},
"homepage": "https://github.com/RisingStack/risingstack-bootcamp#readme",
"dependencies": {
"ioredis": "3.1.1",
"joi": "10.6.0",
"knex": "0.13.0",
"koa": "2.3.0",
"koa-bodyparser": "4.2.0",
"koa-compose": "4.0.0",
"koa-router": "7.2.1",
"lodash": "4.17.4",
"pg": "6.4.0",
"pg-connection-string": "0.1.3",
"qs": "6.5.0",
"request": "2.81.0",
"request-promise-native": "1.0.4",
"semver": "5.3.0",
"sinon": "2.3.6",
"sinon-chai": "2.11.0",
"winston": "2.3.1"
},
"devDependencies": {
"chai": "4.0.2",
"dotenv": "4.0.0",
"eslint": "4.0.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"mocha": "3.4.2",
"nock": "9.0.13",
"nodemon": "1.11.0",
"super-request": "1.2.0"
}
}