-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.3 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
77
78
79
80
81
82
{
"name": "ts-server-boilerplate",
"version": "0.0.1",
"description": "A starting point for future projects",
"devDependencies": {
"@types/bcryptjs": "^2.4.1",
"@types/connect-redis": "^0.0.7",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/express-rate-limit": "^2.9.3",
"@types/express-session": "^1.15.10",
"@types/faker": "^4.1.2",
"@types/glob": "^5.0.35",
"@types/graphql": "^0.13.1",
"@types/ioredis": "^3.2.13",
"@types/jest": "^23.0.0",
"@types/node": "10.5.2",
"@types/request-promise": "^4.1.42",
"@types/uuid": "^3.4.3",
"@types/yup": "^0.24.5",
"apollo-codegen": "^0.19.1",
"fetch-cookie": "^0.7.2",
"gql2ts": "^1.8.0",
"jest": "^23.1.0",
"node-fetch": "^2.2.0",
"nodemon": "^1.17.5",
"prettier": "^1.13.4",
"ts-jest": "^22.4.6",
"ts-node": "6.0.5",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0"
},
"dependencies": {
"apollo-server": "2.0.0",
"apollo-server-express": "^2.0.0",
"bcryptjs": "^2.4.3",
"connect-redis": "^3.3.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-rate-limit": "^2.12.2",
"express-session": "^1.15.6",
"faker": "^4.1.0",
"glob": "^7.1.2",
"graphql": "^0.13.2",
"graphql-request": "^1.8.2",
"ioredis": "^3.2.2",
"merge-graphql-schemas": "^1.5.1",
"pg": "^7.4.3",
"rate-limit-redis": "^1.5.0",
"reflect-metadata": "^0.1.10",
"request-promise": "^4.2.2",
"typeorm": "^0.2.6",
"typescript": "^3.0.3",
"uuid": "^3.3.2",
"yup": "^0.25.1"
},
"scripts": {
"gen:types": "apollo-codegen introspect-schema http://localhost:4000 && gql2ts --ignore-type-name-declaration schema.json -o src/types/schema.d.ts",
"start": "ts-node src/index.ts",
"start:dev": "nodemon --exec ts-node src/index.ts",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch"
},
"jest": {
"globalSetup": "./src/test/setup.js",
"globalTeardown": "./src/test/teardown.js",
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}