-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 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
47
48
49
50
51
52
53
54
55
56
{
"name": "bcengine-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "16.13.2",
"npm": "8.1.2"
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"start": "cd server && node server.js",
"start-dev": "docker-compose up -d && timeout 15 && cd server && nodemon server.js",
"start-all": "concurrently \"cd client && npm start\" \"cd server && node server.js\"",
"build": "npm install && cd client && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"concurrently": "^6.4.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"faker": "^5.5.3",
"find-config": "^1.0.0",
"html-pdf": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"mock-express-response": "^0.3.0",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"path": "^0.12.7",
"pg": "^8.7.1",
"querystring": "^0.2.1",
"react-i18next": "^11.15.3",
"react-router-bootstrap": "^0.26.0",
"sequelize": "^6.13.0",
"sequelize-cli": "^6.3.0",
"tedious": "^14.0.0"
},
"devDependencies": {
"chai": "^4.3.4",
"jest": "^27.4.3",
"mock-require": "^3.0.3",
"nodemon": "^2.0.15",
"proxyquire": "^2.1.3",
"sequelize-mock": "^0.10.2",
"sequelize-test-helpers": "^1.4.2",
"sinon": "^12.0.1",
"supertest": "^6.1.6"
}
}