-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
82 lines (82 loc) · 2.17 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
{
"name": "shu-scheduling-helper-frontend",
"version": "1.0.0",
"description": "A web based timetabler helping SHUers filter and preselect courses easily.",
"author": "SHUOSC",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/shuosc/shu-scheduling-helper.git"
},
"bugs": {
"url": "https://github.com/shuosc/shu-scheduling-helper/issues"
},
"homepage": "https://github.com/shuosc/shu-scheduling-helper#readme",
"scripts": {
"serve": "cross-env NODE_OPTIONS=--openssl-legacy-provider vue-cli-service serve",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider vue-cli-service build",
"lint": "cross-env NODE_OPTIONS=--openssl-legacy-provider vue-cli-service lint"
},
"dependencies": {
"ant-design-vue": "^1.7.8",
"axios": "^0.27.2",
"core-js": "^3.33.0",
"crypto-js": "^3.3.0",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
"localforage": "^1.10.0",
"mobile-detect": "^1.4.5",
"murmurhash-js": "^1.0.0",
"pako": "^1.0.11",
"promise-worker": "^2.0.1",
"shu-course-number-parser": "^0.2.1",
"v-viewer": "~1.7.1",
"vue": "^2.7.14",
"vue-clipboard2": "^0.3.3",
"vuex": "^3.6.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.19",
"@vue/cli-plugin-eslint": "^4.5.19",
"@vue/cli-service": "^4.5.19",
"acorn": "^7.4.1",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.8",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"minimist": "^1.2.8",
"vue-cli-plugin-ant-design": "^1.0.1",
"vue-template-compiler": "^2.7.14",
"worker-plugin": "^3.2.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}