-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
49
{
"name": "my-docs",
"license": "MIT",
"author": {
"name": "Daniel Machado",
"email": "[email protected]",
"url": "http://localhost:4000"
},
"scripts": {
"start": "node build/server",
"dev": "ts-node-dev --exit-child --transpile-only --ignore-watch node_modules src/server.ts",
"prod": "cross-env NODE_ENV=prod nodemon src/server",
"build": "tsc"
},
"dependencies": {
"@graphql-tools/load-files": "^6.5.4",
"@graphql-tools/merge": "^8.2.15",
"apollo-server": "^3.9.0",
"apollo-server-express": "^3.9.0",
"axios": "^0.21.1",
"cross-env": "^7.0.3",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-server-status": "^1.0.3",
"graphql": "15.5.0",
"make-promises-safe": "^5.1.0",
"nexus": "1.0.0",
"path": "^0.12.7",
"swagger-ui-express": "^4.4.0"
},
"devDependencies": {
"@types/eslint": "^8.4.3",
"@types/node": "15.0.2",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"eslint": "^8.18.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.7",
"prettier": "^2.7.1",
"sucrase": "3.18.1",
"ts-node": "9.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "4.2.4"
},
"engines": {
"node": ">=14.0.0"
}
}