-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.52 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": "nodejs-typescript-apollo-typeorm-boilerplate",
"version": "1.0.0",
"license": "MIT",
"description": "Nodejs Backend API Template using typescript apollo and typeorm",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w && tspath",
"dev": "nodemon -r ./tsconfig-paths.js dist/index.js",
"start": "node -r ./tsconfig-paths.js dist/index.js",
"start2": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/chavda-bhavik/graphql-typeorm-boilerplate.git"
},
"author": "chavda-bhavik",
"dependencies": {
"apollo-server-express": "^3.3.0",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"graphql": "^15.5.3",
"graphql-upload": "^12.0.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"tsconfig-paths": "^3.11.0",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.37",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/graphql-upload": "^8.0.7",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"prettier": "^2.4.0",
"ts-node": "^10.2.1",
"tspath": "^1.3.7",
"typescript": "^4.4.3"
}
}