forked from tcet-opensource/erp-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "api",
"version": "0.0.0",
"private": true,
"type": "module",
"imports": {
"#app": "./app.js",
"#util": "./util.js",
"#constant": "./constant.js",
"#routes/*": "./routes/*.js",
"#models/*": "./models/*.js",
"#middleware/*": "./middleware/*.js",
"#controller/*": "./controller/*.js",
"#services/*": "./services/*.js",
"#error/*": "./error/*.js"
},
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"serverstart": "DEBUG=api:* npm run devstart",
"serverstartWin": "SET DEBUG=api:* && npm run devstart",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules npx jest --watch",
"test:openHandels": "NODE_OPTIONS=--experimental-vm-modules npx jest --detectOpenHandles",
"eslint": "eslint '**/*.js'"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.0",
"morgan": "~1.9.1",
"nodemailer": "^6.9.1",
"supertest": "^6.3.3",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"nodemon": "^2.0.20"
}
}