-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.24 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "server-boilerplate",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM and Graphql",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/connect-redis": "^0.0.11",
"@types/express-rate-limit": "^3.3.3",
"@types/express-session": "^1.15.15",
"@types/faker": "^4.1.7",
"@types/ioredis": "^4.0.18",
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"@types/node-fetch": "^2.5.3",
"@types/request-promise": "^4.1.44",
"@types/sparkpost": "^2.1.4",
"@types/uuid": "^3.4.6",
"@types/yup": "^0.26.24",
"gql2ts": "^1.10.1",
"jest": "^26.6.3",
"nodemon": "^1.19.4",
"ts-jest": "^26.4.4",
"ts-node": "8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.6.4"
},
"dependencies": {
"@gql2ts/from-schema": "^1.10.1",
"@types/glob": "^7.1.1",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"connect-redis": "^4.0.3",
"dotenv": "^8.2.0",
"express-rate-limit": "^5.0.0",
"express-session": "^1.17.0",
"faker": "^4.1.0",
"graphql-import": "^0.7.1",
"graphql-request": "^3.4.0",
"graphql-yoga": "^1.18.3",
"ioredis": "^4.14.1",
"merge-graphql-schemas": "^1.7.0",
"node-fetch": "^2.6.1",
"pg": "^7.12.1",
"rate-limit-redis": "^1.6.0",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"request-promise": "^4.2.4",
"sparkpost": "^2.1.4",
"typeorm": "0.2.21",
"uuid": "^3.3.3",
"yup": "^0.27.0"
},
"scripts": {
"start": "ts-node --files src/index.ts",
"devServer": "nodemon --exec NODE_ENV=development ts-node --files src/index.ts",
"gen-schema-types": "ts-node src/scripts/createTypeSchema.ts",
"test": "NODE_ENV=test jest --watchAll --runInBand"
},
"jest": {
"preset": "ts-jest",
"globalSetup": "./src/testUtils/callSetup.js",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}