-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "try1",
"version": "1.0.0",
"description": "test1",
"main": "index.js",
"dependencies": {
"@types/node": "^12.6.9",
"class-validator": "^0.9.1",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.4.2",
"pg": "^7.12.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.18"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.4.0",
"@graphql-codegen/typescript": "^1.4.0",
"@graphql-codegen/typescript-operations": "^1.4.0",
"@graphql-codegen/typescript-resolvers": "^1.4.0",
"@types/express-graphql": "^0.8.0",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.5.3"
},
"scripts": {
"start": "node build/index.js",
"dev": "nodemon build/index.js",
"tsc": "tsc",
"tslint": "tslint -c tslint.json '**/*.ts'",
"graphql-codegen": "graphql-codegen"
},
"repository": {
"type": "git",
"url": "idk"
},
"author": "MrYoshiji",
"license": "ISC"
}