-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 KB
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
{
"name": "graphql-ts-server-boilerplate",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^25.2.3",
"@types/node": "^8.0.29",
"@types/uuid": "^8.0.0",
"jest": "^26.0.1",
"nodemon": "^2.0.20",
"ts-jest": "^26.0.0",
"ts-node": "3.3.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.3.3333"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"graphql-import": "^1.0.2",
"graphql-request": "^1.8.2",
"graphql-tools": "^6.0.0",
"graphql-yoga": "^1.18.3",
"pg": "^7.3.0",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.25",
"uuid": "^8.1.0"
},
"scripts": {
"start": "NODE_ENV=development nodemon --exec ts-node src/index.ts",
"test": "NODE_ENV=test jest",
"gen-schema-types": "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"
]
}
}