-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "tsgraphboiler",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/uuid": "^8.3.0",
"gql2ts": "^1.10.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.4",
"ts-node": "9.1.1",
"typescript": "4.2.3"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"bcryptjs": "^2.4.3",
"graphql": "^14.5.0",
"graphql-import": "^1.0.2",
"graphql-request": "^3.4.0",
"graphql-tools": "^7.0.4",
"graphql-yoga": "^1.18.3",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"typeorm": "0.2.31",
"uuid": "^8.3.2"
},
"scripts": {
"start": "NODE_ENV=dev nodemon --exec ts-node --files src/index.ts",
"test-server": "NODE_ENV=test nodemon --exec ts-node --files src/index.ts",
"test": "NODE_ENV=test jest --forceExit",
"gen-schema": "gql2ts src/schema.graphql -o src/types/schema.d.ts"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}