forked from kylecoberly/motherbrain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.91 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
{
"name": "motherbrain-api",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./start_server",
"dev": "./node_modules/nodemon/bin/nodemon.js ./start_server",
"test": "./node_modules/mocha/bin/mocha -wG --recursive --no-exit tests",
"find-test": "./node_modules/mocha/bin/mocha -wG --recursive --no-exit tests --grep",
"unit": "./node_modules/mocha/bin/mocha -wG --recursive --no-exit tests/unit",
"integration": "./node_modules/mocha/bin/mocha -wG --recursive --no-exit tests/integration",
"acceptance": "./node_modules/mocha/bin/mocha -wG --recursive --no-exit tests/acceptance",
"migrate": "./node_modules/knex/bin/cli.js migrate:latest",
"migrate:test": "./node_modules/knex/bin/cli.js migrate:latest --env test",
"migrate:dev": "./node_modules/knex/bin/cli.js migrate:latest --env learn_development",
"seed": "./node_modules/knex/bin/cli.js seed:run",
"seed:test": "./node_modules/knex/bin/cli.js seed:run --env test",
"seed:dev": "./node_modules/knex/bin/cli.js seed:run --env learn_development",
"reset-test-data": "knex seed:run --env test && knex seed:run --env learn_development"
},
"dependencies": {
"axios": "^0.16.1",
"body-parser": "~1.16.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.3",
"debug": "~2.6.0",
"dotenv": "^4.0.0",
"express": "~4.14.1",
"global": "^4.3.2",
"jsonapi-serializer": "^3.5.2",
"knex": "^0.12.9",
"lodash": "^4.17.4",
"morgan": "~1.7.0",
"objection": "^0.7.12",
"passport": "^0.3.2",
"pg": "^6.1.5",
"pluralize": "^4.0.0",
"serve-favicon": "~2.3.2"
},
"devDependencies": {
"chai": "^4.0.2",
"mocha": "^3.4.1",
"nodemon": "^1.11.0",
"sinon": "^2.2.0",
"supertest": "^3.0.0"
}
}