forked from sipb/courseroad2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.72 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
{
"name": "courseroad",
"version": "1.0.0",
"description": "Course planning for MIT undergrads",
"author": "courseroad-dev team",
"scripts": {
"lint": "node_modules/.bin/eslint --ext .js,.vue src/ tests/",
"lint-fix": "node_modules/.bin/eslint --ext .js,.vue --fix src/ tests/",
"test": "npm run test:unit",
"build-dev": "webpack --env.APP_URL=https://courseroad.mit.edu/dev --env.FIREROAD_URL=https://fireroad.mit.edu --mode=production --config build/webpack.config.dev.js",
"build-prod": "webpack --env.APP_URL=https://courseroad.mit.edu --env.FIREROAD_URL=https://fireroad.mit.edu --mode=production --config build/webpack.config.dev.js",
"dev": "webpack-dev-server --env.APP_URL=http://localhost:8080 --env.FIREROAD_URL=https://fireroad-dev.mit.edu --mode=development --config build/webpack.config.dev.js",
"test:unit": "vue-cli-service test:unit --coverage"
},
"main": "index.js",
"dependencies": {
"axios": "^0.19.0",
"jquery": "^3.3.1",
"material-design-icons-iconfont": "^4.0.5",
"moment": "^2.24.0",
"typeface-roboto": "0.0.54",
"ua-parser-js": "^0.7.19",
"vue-context": "^3.4.0",
"vue-cookies": "^1.5.12",
"vue-router": "^3.0.4",
"vue-scrolling-table": "^0.2.2",
"vuetify": "^1.5.12",
"vuex": "^3.1.0"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "7.4.4",
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/vue-fontawesome": "^0.1.6",
"@vue/cli-plugin-unit-jest": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"file-loader": "^3.0.1",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.6.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue": "^2.5.17",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"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"
}
}