forked from funwarn/service-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "service-user",
"version": "1.0.0",
"description": "Microservice for Users",
"scripts": {
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"dev": "nodemon --config \"./util/nodemon.json\"/",
"build": "rm -rf ./dist/ && tsc",
"serve": "npm run build && pm2-runtime start ecosystem.prod.config.json",
"test": "jest"
},
"author": "funwarn",
"license": "ISC",
"dependencies": {
"apollo-server": "^2.19.0",
"apollo-server-testing": "^2.19.2",
"axios": "^0.19.2",
"graphql": "^15.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.10"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.13",
"@types/node": "^13.11.1",
"dotenv": "^8.2.0",
"jest": "^26.6.1",
"mongodb-memory-server": "^6.6.3",
"nodemon": "^2.0.2",
"pm2": "^4.4.0",
"ts-jest": "^26.4.3",
"ts-node": "^8.8.1",
"tslint": "^5.20.1",
"typescript": "^3.8.3"
}
}