forked from frederick-wang/scu-urp-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 4.91 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "scu-urp-assistant",
"version": "0.10.2",
"description": "四川大学综合教务系统助手,是一个优化四川大学综合教务系统的「Userscript」,即用户脚本。这不是一个独立的软件,也不是一个浏览器的插件,但可以依赖浏览器的插件运行,或者作为一个Bookmarklet在点击后运行。该脚本可以为综合教务系统增加以下功能:1. 外观美化:会自动美化教务系统界面上部分元素的外观;2. 快捷评教:自动为「希望给好评」的老师打满分好评,并附上随机的正面评语;3. 自动登录:恢复登陆页面的「两周之内不必登录」选项,每次打开教务系统后不用重复登录;4. 均分绩点计算器:可以直接看到自己的全部均分、全部绩点与必修均分、必修绩点,还可以自由选择自己需要的课程进行计算,甚至可以方便地对预期成绩进行估计;5. 培养方案查询:可以方便地查询全校所有专业的培养方案与指导性教学计划,并且可以选择任意两个培养方案进行比较,查看差异,还能将查询结果保存为长图;6. 成绩查询:可以方便地查询到本学期课程成绩的最高分、最低分、平均分和名次;7. 历年大创查询:可以查询川大历年立项的大创项目信息;8. 专业授位查询:可以查询专业的学士学位授位情况。",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development webpack-dev-server --mode=development --progress --env.development",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "cross-env NODE_ENV=production tsc --emitDeclarationOnly",
"build:js": "cross-env NODE_ENV=production webpack --mode=production --progress --env.production",
"analyze": "cross-env NODE_ENV=production webpack --mode=production --progress --env.production --env.analyze",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "[email protected]:frederick-wang/scu-urp-assistant.git"
},
"keywords": [
"SCU",
"四川大学"
],
"author": "Zhaoji Wang",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/plugin-transform-typescript": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/cheerio": "^0.22.21",
"@types/core-js": "^2.5.3",
"@types/jquery": "^3.5.0",
"@types/lodash-es": "^4.17.3",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-loader": "^8.1.0",
"babel-plugin-component": "^1.1.1",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^4.0.0",
"cssnano": "^4.1.10",
"cz-conventional-changelog": "^3.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"node-sass": "^4.14.1",
"null-loader": "^4.0.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"pug": "^3.0.0",
"pug-loader": "^2.4.0",
"pug-plain-loader": "^1.0.0",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.8",
"to-string-loader": "^1.1.6",
"typescript": "^3.9.7",
"vue-class-component": "^7.2.5",
"vue-loader": "^15.9.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.44.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/runtime": "^7.10.5",
"@types/faker": "^4.1.12",
"@types/ramda": "^0.27.11",
"axios": "^0.19.2",
"browserslist": "^4.13.0",
"cheerio": "^1.0.0-rc.3",
"core-js": "^3.6.5",
"element-ui": "^2.13.2",
"faker": "^4.1.0",
"html2canvas": "^1.0.0-rc.5",
"jquery": "^3.5.1",
"localforage": "^1.8.1",
"minimatch": "^3.0.4",
"ramda": "^0.27.0",
"regenerator-runtime": "^0.13.7",
"vue": "^2.6.11",
"vue-json-viewer": "^2.2.12",
"vue-property-decorator": "^9.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": [
"last 5 version",
"> 1%",
"maintained node versions",
"not dead",
"ie >= 9"
]
}