-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"name": "myapi",
"version": "0.0.1",
"devDependencies": {
"@types/express": "^4.17.2",
"@types/faker": "^4.1.12",
"@types/jest": "^26.0.4",
"@types/node": "^12.12.8",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"jest": "^26.1.0",
"nodemon": "^1.19.4",
"ts-jest": "^26.1.2",
"ts-node": "8.5.2",
"typescript": "3.9.5"
},
"dependencies": {
"apollo-server-express": "^2.9.9",
"class-validator": "^0.12.2",
"dataloader": "^2.0.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"graphql": "^15.3.0",
"graphql-cost-analysis": "^1.0.3",
"graphql-depth-limit": "^1.1.0",
"graphql-rate-limit": "^2.0.1",
"graphql-redis-subscriptions": "^2.3.1",
"graphql-subscriptions": "^1.1.0",
"helmet": "^4.1.0",
"reflect-metadata": "^0.1.10",
"sqlite3": "^5.0.0",
"type-graphql": "^1.0.0-rc.3",
"typeorm": "^0.2.25"
},
"scripts": {
"start": "NODE_ENV=production nodemon --exec ts-node src/index.ts",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"db:setup": "ts-node ./src/test-util/setup.ts",
"test": "npm run db:setup && jest --runInBand",
"test:watch": "jest --watchAll --runInBand"
}
}