-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.23 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.23 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "codly",
"version": "0.0.0",
"description": "Efficient code practice for individuals and classrooms.",
"scripts": {
"start": "webpack-dev-server --inline",
"build": "webpack",
"watch": "webpack --watch",
"lint-sass": "sass-lint 'src/**/*.sass' -v",
"lint-js": "eslint . --ext js,vue",
"test": "npm run -s lint-sass && npm run -s lint-js",
"count": "cloc . --vcs=git --not-match-f=package-lock.json"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"cloc": "^2.5.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^2.1.1",
"dotenv": "^7.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-vue": "^5.2.3",
"extract-loader": "^3.1.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"postcss-loader": "^3.0.0",
"sass": "^1.49.8",
"sass-lint": "^1.13.1",
"sass-loader": "^7.3.1",
"string-replace-loader": "^2.2.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"vue-loader": "^15.8.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"dependencies": {
"auth0-js": "^9.12.2",
"babel-polyfill": "^6.26.0",
"codemirror": "^5.51.0",
"css-element-queries": "^1.2.3",
"d3-ease": "^1.0.6",
"d3-selection": "^1.4.1",
"d3-shape": "^1.3.7",
"d3-transition": "^1.3.2",
"dayjs": "^1.8.19",
"debounce": "^1.2.0",
"dedent": "^0.7.0",
"js-cookie": "^2.2.1",
"jwt-decode": "^2.2.0",
"mousetrap": "^1.6.3",
"path": "^0.12.7",
"portal-vue": "^1.5.1",
"resize-observer-polyfill": "^1.5.1",
"simplebar": "^3.1.5",
"simplebar-vue": "^0.1.6",
"url-join": "^4.0.1",
"validator": "^10.11.0",
"vue": "^2.6.11",
"vue-codemirror": "^4.0.6",
"vue-feather-icons": "^4.22.0",
"vue-router": "^3.1.5",
"vue-tippy": "^2.1.3",
"vuedraggable": "^2.23.2",
"vuex": "^3.1.2"
},
"browserslist": "last 5 Chrome versions, last 5 Firefox versions",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintConfig": {
"extends": [
"airbnb",
"plugin:vue/essential"
],
"env": {
"browser": true
},
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
"no-param-reassign": [
"error",
{
"props": false
}
],
"no-underscore-dangle": "off",
"global-require": "off",
"object-curly-newline": [
"error",
{
"consistent": true
}
],
"import/no-webpack-loader-syntax": "off",
"import/newline-after-import": "off",
"react/no-this-in-sfc": "off"
},
"settings": {
"import/resolver": "webpack"
},
"plugins": [
"vue"
]
}
}