-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.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
{
"name": "courseroad",
"version": "1.0.0",
"description": "Course planning for MIT undergrads",
"author": "courseroad-dev team",
"scripts": {
"test:unit": "vue-cli-service test:unit --coverage",
"test:e2e": "vue-cli-service test:e2e",
"test:e2e-headless": "vue-cli-service test:e2e --headless",
"test:e2e-record": "vue-cli-service test:e2e --headless --record",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore",
"build-dev": "vite build --mode staging --base /dev",
"build-prod": "vite build",
"dev": "vite dev",
"devdev": "vite dev --mode devdev",
"lint-fix": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"test": "npm run test:unit && npm run test:e2e-headless"
},
"main": "index.js",
"dependencies": {
"@fontsource/roboto": "^5.0.13",
"@vitejs/plugin-vue2": "^2.3.1",
"axios": "^1.6.8",
"cgi": "^0.3.1",
"jquery": "^3.6.0",
"moment": "^2.29.4",
"ua-parser-js": "^1.0.1",
"url-loader": "^4.1.1",
"vite": "^5.2.11",
"vue-context": "^6.0.0",
"vue-cookies": "^1.7.4",
"vue-router": "^3.5.2",
"vue-scrolling-table": "^1.0.4",
"vuetify": "^2.7.2",
"vuex": "^3.6.0"
},
"devDependencies": {
"@mdi/font": "^7.4.47",
"@vue/test-utils": "^1.2.2",
"cypress-file-upload": "^5.0.8",
"deepmerge": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"eslint-plugin-vuetify": "^1.1.0",
"prettier": "3.2.5",
"sass": "~1.32",
"vue": "^2.7.0"
},
"bugs": {
"url": "https://github.com/npfoss/courseroad2/issues"
},
"homepage": "https://courseroad.mit.edu",
"keywords": [
"mit",
"courseroad"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/npfoss/courseroad2.git"
},
"type": "module"
}