-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.18 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
{
"name": "python-webpack-boilerplate",
"version": "1.0.3",
"description": "Webpack boilerplate for Django & Flask",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config frontend/webpack/webpack.config.prod.js",
"start": "webpack serve --config frontend/webpack/webpack.config.dev.js",
"watch": "webpack --watch --config frontend/webpack/webpack.config.watch.js"
},
"repository": {
"type": "git",
"url": "https://github.com/AccordBox/python-webpack-boilerplate"
},
"keywords": [
"webpack",
"startkit",
"frontend"
],
"author": "Michael Yin",
"license": "MIT",
"bugs": {
"url": "https://github.com/AccordBox/python-webpack-boilerplate/issues"
},
"devDependencies": {
"@hotwired/stimulus": "3.2.1",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.1",
"eslint": "^8.28.0",
"eslint-webpack-plugin": "^4.1.0",
"mini-css-extract-plugin": "^2.7.1",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.0.0",
"postcss-preset-env": "^9.0.0",
"sass": "~1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.1",
"stylelint": "^16.4.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-webpack-plugin": "^5.0.0",
"tailwindcss": "^3.4.3",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.8",
"webpack": "^5.75.0",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^5.0.2",
"webpack-merge": "^5.8.0",
"tippy.js": "^6.3.7",
"tailwindcss-stimulus-components": "^5.1.1",
"split-grid": "^1.0.11",
"marked": "^12.0.2",
"js-cookie": "^3.0.5",
"js-beautify": "^1.15.1",
"clipboard": "2.0.11",
"highlight.js": "^11.8.0"
},
"dependencies": {
"core-js": "^3.37.0"
}
}