-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.46 KB
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
{
"name": "jetti-api",
"version": "1.0.0",
"description": "API for jetti",
"main": "src/index.ts",
"scripts": {
"start": "npm run dev",
"dev": "nodemon --config nodemon.json src/index.ts",
"postinstall": "npx prisma generate && tsc",
"ts-node": "ts-node --compiler-options '{\"module\":\"CommonJS\"}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Glup3/jetti-api.git"
},
"author": "Phuc Tran",
"license": "MIT",
"bugs": {
"url": "https://github.com/Glup3/jetti-api/issues"
},
"homepage": "https://github.com/Glup3/jetti-api#readme",
"engines": {
"node": "v12.13.1"
},
"devDependencies": {
"@types/node": "^14.14.33",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"prisma": "^2.20.1",
"prisma-dbml-generator": "^0.5.0",
"ts-node": "^9.1.1",
"typegraphql-prisma": "^0.13.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@prisma/client": "^2.20.1",
"@types/graphql-fields": "^1.3.3",
"apollo-server-express": "^2.21.1",
"class-validator": "^0.13.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.9.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1"
}
}