-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
50
51
{
"name": "graphql-typescript-server",
"version": "0.0.3",
"description": "",
"main": "dist/app.js",
"repository": {
"url": "https://github.com/NickKelly1/graphql-typescript-server"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/www.js",
"dev": "ts-node-dev --notify false --respawn src/www.ts"
},
"keywords": [
"GraphQL",
"TypeScript",
"NodeJS"
],
"author": "Nick Kelly",
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"express-rate-limit": "^5.2.3",
"faker": "^5.1.0",
"graphiql": "^1.2.0",
"graphql": "^15.4.0",
"http-errors": "^1.8.0",
"joi": "^17.3.0",
"morgan": "^1.10.0",
"typescript": "^4.1.2",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/express-rate-limit": "^5.1.0",
"@types/faker": "^5.1.5",
"@types/http-errors": "^1.8.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.11",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.0"
}
}