-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.98 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
52
53
54
55
56
57
58
59
60
{
"name": "koa-starter-template",
"version": "1.0.0",
"description": "KOA template with loaded packages and app structures",
"main": "index.js",
"scripts": {
"start": "nodemon --max-old-space-size=4000 --exec cross-env NODE_ENV=development babel-node -r dotenv/config src/index.js",
"start-debug": "node-inspector & nodemon node-inspect --max-old-space-size=4000 --exec cross-env NODE_ENV=development babel-node -r dotenv/config src/index.js",
"build": "webpack --config ./webpack.config.js --mode=production",
"prettier:check": "prettier --check 'src/**/*.js'",
"lint": "eslint .",
"lint-fix": "eslint --fix --max-warnings=0 ."
},
"author": "George",
"license": "MIT",
"dependencies": {
"@supercharge/request-ip": "^1.2.0",
"async-busboy": "^1.1.0",
"axios": "^0.27.2",
"cabin": "^9.1.2",
"core-js": "^3.25.2",
"dotenv": "^16.0.2",
"form-data": "^4.0.0",
"koa": "^2.13.4",
"koa-better-request-id": "^1.2.0",
"koa-better-response-time": "^1.2.0",
"koa-bodyparser": "^4.3.0",
"koa-compose": "^4.1.0",
"koa-compress": "^5.1.0",
"koa-ctx-paginate": "0.0.6",
"koa-router": "^12.0.0",
"koa-useragent": "^4.1.0",
"multer": "^1.4.5-lts.1",
"pino": "^8.6.0",
"regenerator-runtime": "^0.13.9",
"request-received": "0.0.3",
"signale": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
}
}