-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-backend.json
62 lines (62 loc) · 1.93 KB
/
package-backend.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
// Using this as a reference for future projects
{
"name": "beiytak_api",
"private": true,
"main": "dist/index.js",
"dependencies": {
"@graphql-tools/graphql-file-loader": "^7.0.6",
"@graphql-tools/load": "^7.1.9",
"@graphql-tools/schema": "^8.1.2",
"apollo-server-express": "^3.3.0",
"axios": "^0.21.1",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"debug": "^4.3.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.5.0",
"node-fetch": "^2.6.1",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.30"
},
"devDependencies": {
"@graphql-codegen/cli": "2.1.1",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/jsdoc": "^2.1.2",
"@graphql-codegen/typescript": "2.1.2",
"@graphql-codegen/typescript-operations": "^2.1.2",
"@graphql-codegen/typescript-resolvers": "2.1.2",
"@types/cors": "^2.8.9",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.11",
"@types/express-graphql": "^0.9.0",
"@types/node": "^14.14.25",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"beiytak_stores": "file:../beiytak_stores",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.1",
"husky": "^7.0.2",
"init": "^0.1.2",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.1.3"
},
"scripts": {
"generate": "graphql-codegen --config codegen.yml",
"postinstall": "husky install",
"dev": "DEBUG=beiytak:* ts-node-dev ./src/app.ts",
"predev": "yarn generate",
"start": "node ./build/app.js",
"prestart": "yarn generate",
"build": "tsc",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint-fix": "eslint --fix './src/**/*.{ts,tsx}'"
}
}