-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.58 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
{
"name": "eva",
"description": "Let algorithms decide your life.",
"version": "0.1.0",
"author": "Stijn Seghers <[email protected]>",
"private": true,
"browserslist": "> 1%, not dead",
"scripts": {
"dev": "webpack serve --progress --config build/webpack.dev.js",
"build": "webpack --progress --config build/webpack.prod.js",
"test": "karma start test/unit/karma.conf.js --single-run",
"test-watch": "karma start test/unit/karma.conf.js",
"lint": "eslint --ext .js,.vue src test",
"analyze": "webpack --progress --config build/webpack.analyze.js"
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"color": "^4.2.3",
"core-js": "^3.34.0",
"element-plus": "^2.4.1",
"fast-text-encoding": "^1.0.6",
"pouchdb": "^7.3.1",
"pouchdb-find": "^7.3.1",
"vue": "^3.3.6",
"vue-constants": "^1.0.3",
"vue-gtag": "^2.0.1",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.23.7",
"@soda/friendly-errors-webpack-plugin": "^1.8.1",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"babel-plugin-component": "^1.1.1",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"cssnano-preset-advanced": "^6.0.1",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.15.0",
"eslint-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^5.5.3",
"karma": "^6.4.1",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.4.0",
"karma-spec-reporter": "^0.0.36",
"karma-webpack": "^5.0.0",
"mini-css-extract-plugin": "^2.7.6",
"mocha": "^10.2.0",
"mocha-clean": "^1.0.0",
"postcss-loader": "^7.3.2",
"postcss-normalize": "^10.0.1",
"sass": "^1.69.7",
"sass-loader": "^13.3.2",
"source-map-explorer": "^2.5.3",
"style-loader": "^3.3.3",
"vue-loader": "^17.2.2",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.0",
"webpack-merge": "^4.2.2"
}
}