-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 1.07 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
{
"name": "family-tree",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "nodemon --use_strict --inspect=9229 server/main.ts --exec ts-node",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --compilers ts:ts-node/register --ui bdd --reporter spec --full-trace --require test/request/prepare --recursive test/request",
"migrate": "ts-node node_modules/knex/bin/cli migrate:latest",
"rollback": "ts-node node_modules/knex/bin/cli migrate:rollback",
"seed": "ts-node node_modules/knex/bin/cli seed:run"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"casual": "^1.5.19",
"data-loader": "^0.3.0",
"dataloader": "^1.3.0",
"eslint": "^4.13.1",
"express": "^4.16.2",
"graphql": "^0.12.3",
"graphql-server-express": "^1.3.1",
"graphql-tools": "^2.14.0",
"graphql-type-json": "^0.1.4",
"knex": "^0.14.2",
"knex-cleaner": "^1.1.3",
"nodemon": "^1.13.3",
"ramda": "^0.25.0",
"sqlite3": "^3.1.13",
"ts-node": "^4.0.2",
"typescript": "^2.6.2"
}
}