-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "fixpoint-backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test_local": "set NODE_OPTIONS=--experimental-vm-modules && jest",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"jsonwebtoken": "^9.0.2",
"mathjs": "^15.1.0",
"minio": "^8.0.7",
"multer": "^2.0.2",
"nodemailer": "^7.0.11",
"pg": "^8.16.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.7",
"socket.io": "^4.8.1"
},
"devDependencies": {
"jest": "^30.2.0",
"nodemon": "^3.1.10",
"sequelize-cli": "^6.6.3",
"socket.io-client": "^4.8.1",
"supertest": "^7.1.4"
},
"overrides": {
"inflight": "npm:@isaacs/inflight@^1.0.6",
"glob": "10.5.0",
"validator": "^13.15.22",
"js-yaml": "3.14.2",
"fast-xml-parser": "^5.4.1"
}
}