-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.82 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
{
"name": "koa-cms",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon ./src/main.ts",
"start:dev": "cross-env-shell NODE_ENV=development nodemon --exec 'ts-node -r module-alias/register' --files -T -P ./tsconfig.json ./src/main.ts",
"start:test": "cross-env-shell NODE_ENV=test nodemon --exec 'ts-node -r module-alias/register' --files -T -P ./tsconfig.json ./src/main.ts",
"start:prod": "cross-env-shell NODE_ENV=production nodemon --exec 'ts-node -r module-alias/register' --files -T -P ./tsconfig.json ./src/main.ts",
"build": "tsc -p ./tsconfig.json",
"serve": "cross-env-shell NODE_ENV=production nodemon dist/main.js"
},
"keywords": [
"koa",
"vue3-ts-cms",
"cms"
],
"author": "HersanKuang",
"license": "MIT",
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.0",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"jsonwebtoken": "^9.0.0",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"module-alias": "^2.2.3",
"mysql2": "^3.4.1",
"tsconfig-paths": "^4.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@koa/multer": "^3.0.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa__cors": "^5.0.0",
"@types/koa__multer": "^2.0.7",
"@types/koa__router": "^12.0.4",
"@types/module-alias": "^2.0.4",
"@types/node": "^20.12.7",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}