-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.23 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.23 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
{
"name": "CutWalk",
"version": "0.0.1",
"description": "Cost Calculator for Cutting Machines",
"main": "app.js",
"type": "module",
"scripts": {
"dev": "nodemon server.js",
"test": "jest",
"start:prod": "SET NODE_ENV=production&&nodemon server.js",
"debug": "ndb server.js"
},
"author": "Cla Tschenett",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"dxf-parser": "^1.1.2",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.1",
"hpp": "^0.2.3",
"https": "^1.0.0",
"jest-mock-req-res": "^1.0.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.2.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.3",
"nodemon": "^2.0.22",
"path": "^0.12.7",
"sharp": "^0.32.1",
"slugify": "^1.6.6",
"validator": "^13.9.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/register": "^7.22.5",
"eslint": "^8.30.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.5.0"
},
"engines": {
"node": ">=16.14.1"
}
}