-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.73 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
{
"name": "backend",
"version": "1.0.0",
"description": "backend projet dev ",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec babel-node ./src/index.js",
"start": "node ./build/index.js",
"test": "jest --testTimeout=5000",
"faker": "node ./src/faker/user.faker.js",
"faker-update": "node ./src/faker/user_update.faker.js",
"build": "babel ./src -d build --copy-files",
"artillery-local": "set ENV=http://localhost:3001/api&& artillery run -k --dotenv .env ./src/tests/Artillery/testing_api_charge.yml",
"artillery-prod": "set ENV=http://ec2-13-38-128-96.eu-west-3.compute.amazonaws.com/api&& artillery run -k --dotenv .env ./src/tests/Artillery/testing_api_charge.yml"
},
"author": "Peel Organisation",
"license": "ISC",
"dependencies": {
"@babel/node": "^7.20.7",
"axios": "^1.2.4",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cors": "2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"firebase": "^9.22.0",
"firebase-admin": "^11.7.0",
"jsonwebtoken": "^9.0.0",
"login": "^0.8.0",
"mathjs": "^10.6.0",
"moment": "^2.29.4",
"mongoose": "^6.8.2",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"nodemon": "^2.0.20",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.21.5",
"@faker-js/faker": "^8.0.1",
"artillery": "^2.0.0-32",
"babel-cli": "^6.26.0",
"babel-preset": "^1.1.7",
"babel-preset-env": "^1.7.0",
"jest": "^29.5.0",
"superagent": "^8.0.9",
"supertest": "^6.3.3"
}
}