-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.52 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.52 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
{
"name": "typvp-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/kysley/typvp-api.git",
"author": "Evan Kysley <evan@kysley.com>",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node-dev --no-notify --respawn --transpileOnly ./src",
"start": "cross-env NODE_ENV=production node dist/index.js",
"build": "rm -rf dist && tsc",
"seed": "ts-node prisma/seed.ts",
"start:docker": "cross-env docker-compose -f 'prisma/docker-compose.yml' up",
"stop:docker": "cross-env docker-compose -f 'prisma/docker-compose.yml' down"
},
"dependencies": {
"@typvp/gen": "^0.2.3",
"apollo-server-express": "^2.9.12",
"bcryptjs": "^2.4.3",
"bull": "^3.12.1",
"class-validator": "^0.11.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ioredis": "^4.14.1",
"jsonwebtoken": "^8.5.1",
"prisma-client-lib": "^1.34.10",
"reflect-metadata": "^0.1.13",
"socket.io": "^2.3.0",
"tiny-lru": "^7.0.2",
"type-graphql": "^0.17.5",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bull": "^3.10.6",
"@types/dotenv": "^8.2.0",
"@types/graphql": "^14.5.0",
"@types/ioredis": "^4.0.19",
"@types/jsonwebtoken": "^8.3.5",
"@types/node": "^12.12.12",
"@types/socket.io": "^2.1.4",
"@types/uuid": "^3.4.6",
"cross-env": "^6.0.3",
"graphql": "^14.5.8",
"ts-node": "^8.5.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.2"
}
}