-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.42 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
{
"name": "popwaifu",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"build_web": "sh build-web.sh",
"cron_dev": "NODE_ENV=development node ./src/cron/main.js",
"cron_pm2_dev": "pm2 reload ecosystem.cron.config.js",
"cron_pm2_prod": "pm2 reload ecosystem.cron.config.js --env production",
"server_dev": "NODE_ENV=development node ./src/server/main.js",
"server_pm2_prod": "pm2 reload ecosystem.server.config.js --env production",
"server_deploy_prod": "npm i && npm run build_web && npm run server_pm2_prod",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "SoftwareSing",
"license": "MIT",
"dependencies": {
"@apidevtools/swagger-parser": "^10.0.3",
"bridge-redis": "0.0.2",
"cache-bridge": "0.0.4",
"cors": "^2.8.5",
"express": "^4.17.3",
"ipaddr.js": "^2.0.1",
"mongoose": "^6.2.8",
"node-cron": "^3.0.0",
"redis": "^3.1.2",
"svelte": "^3.46.4",
"swagger-ui-express": "^4.3.0",
"~common": "file:src/common",
"~config": "file:config",
"~entity": "file:src/entity",
"~server": "file:src/server"
},
"devDependencies": {
"@types/express": "^4.17.13",
"eslint": "^8.13.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-yml": "^1.0.0"
}
}