-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 KB
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
{
"name": "map_app",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "server/index.js",
"dependencies": {
"@casl/ability": "^6.7.1",
"@types/jest": "^29.5.12",
"axios": "^0.26.1",
"bcrypt": "^5.1.1",
"body-parser": "^1.19.2",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-rate-limit": "^7.2.0",
"jest-config": "^29.7.0",
"joi": "^17.12.3",
"jsonwebtoken": "^9.0.2",
"mariadb": "^3.0.0",
"mysql": "^2.18.1",
"sequelize": "^6.17.0"
},
"scripts": {
"test": "jest",
"test_db_start": "echo Start docker DB... && docker compose -f test_docker-compose.yml up -d && echo DB is ready!",
"test_db_stop": "echo Stop docker DB and remove volume... && docker compose -f test_docker-compose.yml down && docker volume rm map_app_map-app-test-db",
"dev": "nodemon --legacy-watch ./server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leolab1337/map_app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/leolab1337/map_app/issues"
},
"homepage": "https://github.com/leolab1337/map_app#readme",
"devDependencies": {
"@babel/preset-env": "^7.24.8",
"babel-jest": "^29.7.0",
"cors": "^2.8.5",
"jest": "^29.7.0",
"nodemon": "^3.1.0"
}
}