-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.72 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": "perf-analytics-api",
"version": "1.0.0",
"description": "PerfAnalytics.API is a restful API which saves data, posted from PerfAnalytics.JS and returns time specific filtered data.",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch-tsc": "tsc -w",
"watch-deploy": "nodemon dist/server.js",
"start": "node dist/server.js",
"dev": "nodemon server.ts",
"test": "jest --forceExit",
"watch-test": "jest --watch --runInBand --detectOpenHandles",
"artillery-local": "./scripts/artillery.sh development",
"artillery-prod": "./scripts/artillery.sh production",
"heroku-postbuild": "npm run build"
},
"author": "Alp Gökçek",
"license": "MIT",
"dependencies": {
"@types/supertest": "^2.0.11",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.11.1",
"http-status-codes": "^2.1.4",
"joi": "^17.4.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongodb-memory-server": "^6.9.6",
"mongoose": "^5.12.10",
"request": "^2.88.2",
"supertest": "^6.1.3",
"swagger-ui-express": "^4.1.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@types/joi": "^17.2.3",
"@types/lodash": "^4.14.170",
"@types/mongoose": "^5.10.5",
"@types/node": "^15.6.0",
"@types/swagger-ui-express": "^4.1.2",
"artillery": "^1.7.2",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.6"
}
}