-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.39 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "koact",
"version": "1.0.0",
"description": "koa+react",
"main": "dist/server.js",
"scripts": {
"test": "jest --detectOpenHandles",
"start": "node dist/server.js --env=production",
"server": "nodemon server.ts -i web --env=development",
"lint": "eslint ./**/*.ts",
"lint-fix": "eslint ./**/*.ts --fix",
"build": "tsc && tsc-alias && npm run build-client",
"dev": "npm-run-all --parallel server web-server",
"web-server": "cd web && npm run dev",
"init": "npm i npm-run-all && npm-run-all --parallel install-server install-web",
"install-server": "npm install",
"install-web": "cd web && npm install",
"build-server": "tsc && tsc-alias",
"build-client": "cd web && npm run build",
"ci": "npm run lint"
},
"pre-commit": [
"lint-fix"
],
"jest": {
"extensionsToTreatAsEsm": [
".ts",
".js"
]
},
"keywords": [
"koa",
"react"
],
"author": "Ada",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.1",
"ejs": "^3.1.6",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-json": "^2.0.2",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"koa-views": "^7.0.1",
"log4js": "^6.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@jest/test-result": "^27.0.2",
"@types/chalk": "^2.2.0",
"@types/jest": "^26.0.23",
"@types/koa": "^2.13.1",
"@types/koa-router": "^7.4.2",
"@types/log4js": "^2.3.5",
"@types/reflect-metadata": "^0.1.0",
"@types/uuid": "^8.3.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-core": "^6.26.3",
"babel-jest": "^27.0.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^27.0.4",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"puppeteer-core": "^10.0.0",
"reflect-metadata": "^0.1.13",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-lint": "^4.5.1",
"ts-node": "^9.1.1",
"tsc-alias": "^1.2.10",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3",
"typescript-eslint-parser": "^22.0.0"
}
}