-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.45 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.45 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
{
"name": "my-core",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "_ENV='local' nodemon index.js",
"prod": "_ENV='prod' nodemon index.js",
"test": "_ENV='test' nodemon index.js",
"build:dev": "node --max-old-space-size=4096 app/webpack/dev.js",
"build:prod": "node app/webpack/prod.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@koa/router": "^14.0.0",
"ajv": "^8.17.1",
"glob": "^11.0.3",
"koa": "^3.1.1",
"koa-bodyparser": "^4.4.1",
"koa-nunjucks-2": "^3.0.2",
"koa-static": "^5.0.0",
"log4js": "^6.9.1",
"md5": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@vue/compiler-sfc": "^3.5.22",
"axios": "^1.13.2",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"element-plus": "^2.11.7",
"express": "^5.1.0",
"html-webpack-plugin": "^5.6.4",
"loadsh": "^0.0.4",
"mini-css-extract-plugin": "^2.9.4",
"nodemon": "^3.1.10",
"pinia": "^3.0.4",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.14",
"thread-loader": "^4.0.4",
"vue": "^3.5.22",
"vue-loader": "^17.4.2",
"vue-router": "^4.6.3",
"webpack": "^5.102.1",
"webpack-dev-middleware": "^7.4.5",
"webpack-hot-middleware": "^2.26.1",
"webpack-merge": "^6.0.1"
}
}