-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.88 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "nodejs-web-server",
"version": "0.1.0",
"private": true,
"bin": "./src/bin/www",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --config nodemon.json",
"dev:test": "cross-env NODE_ENV=test nodemon --config nodemon.json",
"dev:production": "cross-env NODE_ENV=production nodemon --config nodemon.json",
"start": "cross-env NODE_ENV=production pm2 start ecosystem.config.js",
"start:test": "cross-env NODE_ENV=test pm2 start ecosystem.config.js",
"start:development": "cross-env NODE_ENV=development pm2 start ecosystem.config.js",
"sequelize:auto": "node .sequelize.auto.js",
"build": "pkg .",
"lint:fix": "eslint --fix .",
"prepare": "husky"
},
"lint-staged": {
"*.{js,mjs,cjs}": "eslint --fix"
},
"pkg": {
"assets": [
"src/config/*.yml",
".env.*"
],
"targets": [
"node16-win-x64",
"node16-linux-x64"
],
"outputPath": "dist/"
},
"dependencies": {
"config": "^3.3.12",
"debug": "^4.1.1",
"dotenv": "^16.4.5",
"js-yaml": "^4.1.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-onerror": "^4.1.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa2-swagger-ui": "^5.10.0",
"mysql2": "^3.10.2",
"sequelize": "^6.37.3",
"swagger-jsdoc": "^6.2.8",
"winston": "^3.13.1",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.7.0",
"cross-env": "^7.0.3",
"eslint": "^9.7.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.8.0",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"nodemon": "^1.19.1",
"pkg": "^5.8.1",
"pm2": "^5.4.2",
"prettier": "^3.3.3",
"sequelize-auto": "^0.8.8"
}
}