-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
{
"name": "back",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/PracticaDS/pdes-tp-backend-team_prog.git",
"license": "MIT",
"scripts": {
"start": "nodemon --exec babel-node -- src/server",
"test": "jest",
"lint": "eslint ./**/*.js",
"test:load": "artillery run load_testing/game.yml -o load_testing/game-output.json",
"test:load:report": "artillery report load_testing/game-output.json"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@shelf/jest-mongodb": "^1.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
"jest": "^24.8.0",
"mockingoose": "^2.13.0",
"nodemon": "^1.19.0",
"supertest": "^4.0.2"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/runtime": "^7.4.5",
"@types/faker": "^4.1.5",
"artillery": "^1.6.0-28",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.0",
"faker": "^4.1.0",
"mongodb": "^3.2.6",
"mongoose": "^5.5.11",
"mongoose-relationship": "^0.1.5",
"morgan": "^1.9.1",
"prom-client": "^11.5.0",
"response-time": "^2.3.2"
}
}