This repository has been archived by the owner on May 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.81 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "user-service",
"version": "3.0.1",
"description": "Provides services to manage users.",
"main": "dist/server.js",
"scripts": {
"postinstall": "npx tsc",
"dev": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"build-ts": "tsc",
"lint": "tsc --noEmit && eslint \"**/src/**/*.{js,ts}\" --quiet --fix",
"build": "npm run build-ts && npm run lint",
"start": "pm2 start pm2.yaml",
"stop": "pm2 stop pm2.yaml",
"watch-test": "npm run test -- --watchAll",
"test": "jest --forceExit --coverage --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/ashutoshahoo/user-service"
},
"author": "ashutoshsahoo",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"argon2-pass": "^1.0.2",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"maskdata": "^1.1.6",
"moment": "^2.29.2",
"moment-timezone": "^0.5.33",
"mongoose": "^5.13.8",
"pm2": "^5.1.1",
"short-uuid": "^4.2.0",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/dotenv": "^8.2.0",
"@types/eslint": "^7.28.0",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^9.0.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^16.7.10",
"@types/supertest": "^2.0.11",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"jest": "^27.1.0",
"mocha": "^9.1.1",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.2"
}
}