forked from magnet-cl/django-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.04 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
{
"name": "django-project-template",
"version": "0.2.1",
"repository": "https://github.com/magnet-cl/django-project-template",
"author": "Magnet S.P.A.",
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"prepare": "husky install",
"lint": "eslint '**/*.js' && stylelint '**/*.{css,scss}'",
"lint:fix": "eslint '**/*.js' --fix && stylelint '**/*.{css,scss}' --fix"
},
"dependencies": {
"bootstrap": "^5.1.3",
"jquery": "^3.6.0",
"moment": "^2.29.0",
"popper.js": "^1.16.1",
"select2": "^4.0.13",
"select2-bootstrap-5-theme": "^1.2.0",
"tempusdominus-bootstrap-4": "^5.39.0",
"tempusdominus-core": "^5.19.0"
},
"description": "A base for a django project on python 3",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/runtime": "^7.16.3",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.1.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"file-loader": "^6.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.0.2",
"mini-css-extract-plugin": "^2.4.4",
"postcss-loader": "^6.2.0",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"stylelint": "^14.1.0",
"stylelint-config-recommended-scss": "^5.0.1",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.0.0",
"terser-webpack-plugin": "^5.2.5",
"webpack": "^5.64.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-bundle-tracker": "^1.4.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0",
"webpack-merge": "^5.8.0"
}
}