-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "profile-management",
"version": "1.0.0",
"description": "user profile management api",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rimraf ./build",
"build": "npm run clean && tsc",
"dev": "npm run build && NODE_ENV=development node build/src/index.js",
"start": "npm run build && NODE_ENV=production node build/src/index.js",
"test": "NODE_ENV=test mocha --recursive --require ts-node/register 'test/**/*.ts'"
},
"author": "Justin Kwan",
"license": "ISC",
"dependencies": {
"ajv": "^6.12.2",
"body-parser": "^1.19.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"custom-env": "^2.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.22.0",
"loadtest": "*",
"lodash": "^4.17.15",
"moment": "^2.25.3",
"mongodb": "^3.5.7",
"nodemon": "^2.0.4",
"pm2": "^4.4.0",
"redis": "^3.0.2",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/mocha": "^7.0.2",
"@types/bson": "^4.0.2",
"@types/chai": "^4.2.11",
"@types/express": "^4.17.6",
"@types/jquery": "^3.3.38",
"@types/lodash": "^4.14.151",
"@types/mongodb": "^3.5.17",
"@types/redis": "^2.8.21",
"@types/rimraf": "^3.0.0",
"mocha": "^7.1.2",
"assert": "^2.0.0",
"tslint": "^6.1.2",
"typescript": "^3.9.2"
}
}