-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "example7",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"bootstrap": "cd ../.. && yarn && cd - && yarn && yarn db:create && yarn codegen && yarn db:seed:dev",
"codegen": "yarn warthog codegen",
"db:create": "yarn warthog db:create",
"db:drop": "yarn warthog db:drop",
"db:seed:dev": "ts-node tools/seed.ts",
"playground": "yarn warthog playground",
"start": "yarn start:ts",
"start:debug": "yarn start:ts --inspect",
"start:ts": "ts-node --type-check src/index.ts",
"test": "jest --detectOpenHandles --verbose --coverage",
"test:watch": "jest --watch",
"//": "Allows us to use the local warthog CLI in commands above",
"warthog": "../../bin/warthog"
},
"dependencies": {},
"devDependencies": {
"@types/faker": "^4.1.7",
"@types/isomorphic-fetch": "^0.0.34",
"@types/jest": "^23.3.14",
"@types/node": "^10.17.5",
"jest": "^23.6.0",
"ts-node": "^8.10.2"
},
"jest": {
"transform": {
".ts": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"\\.test\\.ts$"
]
}
}