-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.51 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
{
"name": "knoma",
"private": true,
"version": "2.0.0",
"description": "",
"license": "MIT",
"scripts": {
"dev": "node ./server/main/develop.js",
"build": "webpack --config build/webpack.production.js",
"build-demo": "webpack --config build/webpack.demo.js",
"start": "node ./server/main/production.js",
"lint": "eslint --ext .js,.vue,.ts --ignore-path .gitignore . --fix"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"axios": "^1.4.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.8.1",
"eslint": "^8.43.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-vue": "^9.15.1",
"eslint-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"vue": "^3.3.4",
"vue-loader": "^17.2.2",
"vue-router": "^4.2.2",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.7.14",
"vuetify": "^3.3.5",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^6.1.1",
"webpack-dev-server": "^4.15.1",
"webpack-hot-middleware": "^2.25.4",
"webpack-merge": "^5.9.0",
"webpackbar": "^5.0.2"
},
"dependencies": {
"@kyvg/vue3-notification": "^2.9.1",
"express": "^4.18.2",
"winston": "^3.9.0"
}
}