-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.37 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.37 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
{
"name": "lms",
"version": "1.0.0",
"description": "Learning Management System - Exercise management",
"main": "lms/static/my.js",
"repository": "https://github.com/PythonFreeCourse/lms",
"author": "Yam Mesicka <yammesicka@gmail.com>",
"license": "BSD-3-Clause",
"dependencies": {
"bootstrap": "^5.0.0-alpha2",
"bootstrap-icons": "^1.0.0",
"dropzone": "^5.7.2",
"popper.js": "^1.16.1"
},
"scripts": {
"build": "webpack --progress",
"dev-build": "webpack --progress --mode development",
"watch": "webpack --progress --mode development --watch"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"autoprefixer": "^10.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^0.11.2",
"postcss": "^8.1.1",
"postcss-loader": "^4.0.2",
"precss": "^4.0.0",
"sass": "^1.26.11",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"terser-webpack-plugin": "^4.2.2",
"webpack": "^5.0.0-rc.3",
"webpack-cli": "^4.0.0-rc.0"
}
}