-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.75 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
61
62
63
64
65
66
67
68
69
{
"name": "koa2-template",
"version": "1.0.0",
"main": "src/main.ts",
"license": "MIT",
"_moduleAliases": {
"@": "./dist"
},
"engines": {
"node": ">=14",
"pnpm": ">=6"
},
"lint-staged": {
"*.{js,ts},!public/**/*.js": [
"eslint --fix",
"prettier --write"
],
"*.{md,json}": "prettier --write"
},
"scripts": {
"prepare": "husky install .husky",
"preinstall": "npx only-allow pnpm",
"dev": "cross-env NODE_ENV=development nodemon",
"type-check": "tsc"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^10.1.1",
"class-validator": "^0.13.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-compose": "^4.1.0",
"koa-jwt": "^4.0.1",
"koa-send": "^5.0.1",
"log4js": "^6.3.0",
"module-alias": "^2.2.2",
"mysql": "^2.18.1",
"nanoid": "^3.1.30",
"reflect-metadata": "^0.1.13",
"tslog": "^3.2.2",
"typeorm": "^0.2.37"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/formidable": "^2.0.5",
"@types/jsonwebtoken": "^8.5.5",
"@types/koa": "^2.13.4",
"@types/koa-compose": "^3.2.5",
"@types/koa-send": "^4.1.3",
"@types/koa__cors": "^3.0.3",
"@types/koa__router": "^8.0.8",
"@types/node": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.12",
"prettier": "^2.7.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.5.4"
}
}