This repository has been archived by the owner on Jul 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) Β· 1.7 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
{
"name": "dimicigan-chrome",
"description": "chrome extension for checking dimigo class timetable",
"version": "1.0.0",
"author": "JunhoYeo",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"lint:vue": "eslint src/ --ext .vue --fix",
"lint:css": "stylelint \"**/*.{scss,vue}\" --fix"
},
"dependencies": {
"@babel/preset-env": "^7.4.4",
"axios": "^0.18.0",
"cox-postposition": "^1.2.0",
"moment": "^2.24.0",
"stylelint-config-idiomatic-order": "^7.0.0",
"stylelint-config-sass-guidelines": "^6.0.0",
"terser-webpack-plugin": "^1.2.3",
"vue": "^2.6.10"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-vue": "^5.2.2",
"file-loader": "^3.0.1",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"stylelint": "^10.0.1",
"stylelint-config-airbnb": "0.0.0",
"stylelint-order": "^3.0.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-scss": "^3.6.1",
"stylelint-webpack-plugin": "^0.10.5",
"uglifyjs-webpack-plugin": "^2.1.2",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
}
}