-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "fastify-apollo-typegraphql-boilerplate",
"version": "1.0.0",
"description": "Boilerplate CRUD server using Fastify/Type-GraphQL/Apollo-Server.",
"main": "index.js",
"author": "Nick Mandylas",
"license": "MIT",
"dependencies": {
"@autotelic/apollo-server-fastify": "^4.0.0",
"argon2": "^0.27.0",
"class-validator": "^0.12.2",
"connect-redis": "^5.0.0",
"dotenv": "^8.2.0",
"fastify": "^3.6.0",
"fastify-cookie": "^4.1.0",
"fastify-cors": "^4.1.0",
"fastify-session": "^5.2.0",
"graphql": "^15.3.0",
"ioredis": "^4.17.3",
"pg": "^8.4.1",
"redis": "^3.0.2",
"type-graphql": "^1.1.0",
"typeorm": "^0.2.28",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/connect-redis": "^0.0.14",
"@types/uuid": "^8.3.0",
"gen-env-types": "^1.0.4",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.65",
"typescript": "^4.0.3"
},
"scripts": {
"gen-env": "gen-env-types .env -o env.d.ts -e .",
"dev": "NODE_ENV=development ts-node-dev --respawn src/index.ts",
"build": "tsc",
"start": "NODE_ENV=production node dist/src/index.js"
}
}