-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
52
{
"name": "user-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:local": "env-cmd -f .env.local nodemon ./src/app.ts",
"start:dev": "env-cmd -f .env.development nodemon ./src/app.ts",
"start:prod": "env-cmd -f .env.production nodemon ./src/app.ts",
"dbpush:local": "env-cmd -f .env.local -- npx prisma db push",
"dbpush:dev": "env-cmd -f .env.development -- npx prisma db push",
"dbpush:prod": "env-cmd -f .env.production -- npx prisma db push"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@dotenv/cli": "^2.2.2",
"@types/atob": "^2.1.2",
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.36",
"@types/express-pino-logger": "^4.0.3",
"@types/jsonwebtoken": "^8.5.8",
"prisma": "^3.15.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@nexus/schema": "^0.20.1",
"@prisma/client": "^3.15.0",
"apollo-server": "^3.8.2",
"apollo-server-express": "^3.8.2",
"atob": "^2.1.2",
"aws-sdk": "^2.1207.0",
"bcrpyt": "^2.0.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"body-parser": "^1.20.0",
"bson": "^4.7.0",
"dotenv": "^16.0.1",
"env-cmd": "^10.1.0",
"express-pino-logger": "^7.0.0",
"graphql": "^16.5.0",
"jsonwebtoken": "^8.5.1",
"nexus": "^1.3.0",
"nexus-plugin-prisma": "^0.35.0",
"nodemon": "^2.0.16",
"pino": "^8.0.0",
"pm2": "^5.2.0"
}
}