-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "code-first-graph",
"version": "0.0.1",
"description": "Code-first graphql schemas powered API",
"author": "ashudson23",
"private": false,
"license": "MIT",
"scripts": {
"prebuild": "rm -rf dist",
"build": "nest build",
"dev": "nest start",
"start": "nest start",
"serve": "node dist/main",
"lint": "eslint src/** --ext .ts"
},
"dependencies": {
"@nestjs/common": "^7.4.4",
"@nestjs/core": "^7.4.4",
"@nestjs/graphql": "^7.7.0",
"@nestjs/platform-express": "^7.4.4",
"apollo-server-express": "^2.18.0",
"class-validator": "^0.12.2",
"eslint": "^7.9.0",
"eslint-plugin-graphql": "^4.0.0",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.0"
},
"devDependencies": {
"@nestjs/cli": "^7.5.1",
"@nestjs/schematics": "^7.1.2",
"@types/express": "^4.17.8",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-plugin-import": "^2.22.0",
"ts-loader": "^8.0.4",
"ts-node": "9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.3"
}
}