-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.45 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
80
81
82
83
84
{
"name": "hufs-semester-clock",
"version": "1.5.2",
"description": "A Vue.js web extension",
"author": "Max Jonghyuk Kim <[email protected]>",
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,vue}",
"!**/node_modules/**"
]
},
"scripts": {
"lint": "eslint --ext .js,.vue src",
"prettier": "prettier \"src/**/*.{js,vue}\"",
"prettier:write": "npm run prettier -- --write",
"build": "cross-env NODE_ENV=production webpack --hide-modules",
"build:dev": "cross-env NODE_ENV=development webpack --hide-modules",
"build-zip": "node scripts/build-zip.js",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch",
"test": "jest"
},
"dependencies": {
"axios": "^0.19.2",
"chart.js": "^2.9.4",
"chartjs-plugin-datalabels": "^0.7.0",
"dotenv": "^8.2.0",
"firebase": "^7.9.1",
"serialize-javascript": "^2.1.2",
"vue": "^2.6.10",
"vue-chartjs": "^3.5.1",
"vue-moment": "^4.0.0",
"vuex": "^3.1.2"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/runtime-corejs3": "^7.7.4",
"@types/chrome": "^0.0.91",
"@vue/devtools": "^5.3.3",
"@vue/test-utils": "^1.0.3",
"archiver": "^3.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.0.1",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.5",
"core-js": "^3.4.5",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"ejs": "^3.0.1",
"eslint": "^6.7.1",
"eslint-config-standard": "^14.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.0.1",
"file-loader": "^5.0.2",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.0",
"vue-jest": "^3.0.5",
"vue-loader": "^15.7.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-extension-reloader": "^1.1.4"
}
}