-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.05 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.05 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "expense-tracker",
"version": "0.0.0",
"private": true,
"scripts": {
"serve": "node service/commands/serve.js",
"build": "node service/commands/build.js",
"lint": "eslint --ext .ts,.js,.vue src --fix && stylelint \"./src/**/*.vue\" \"./src/**/*.scss\" --fix"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"core-js": "^3.18.3",
"vue": "^3.2.20",
"vue-router": "^4.0.12",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@vue/compiler-sfc": "^3.2.20",
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.2",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"chalk": "^4.1.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.4.0",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-friendly": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.19.1",
"eslint-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.4.2",
"ora": "^5.4.1",
"postcss": "^8.3.9",
"postcss-loader": "^6.2.0",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"strip-ansi": "^6.0.0",
"style-loader": "^3.3.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^9.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.21.0",
"terser-webpack-plugin": "^5.2.4",
"thread-loader": "^3.0.4",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"vue-eslint-parser": "^7.11.0",
"vue-loader": "^16.8.1",
"vue-style-loader": "^4.1.3",
"webpack": "^5.58.2",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": ">=12.13.0"
}
}