-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.07 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
{
"name": "webpack-bootstrap-flask",
"version": "0.0.1",
"description": "Example setup for webpack-bootstrap-flask stack",
"main": "index.js",
"scripts": {
"start": "npm-run-all webserver devserver",
"devserver": "webpack serve --mode development --config config/webpack.config.js",
"webserver": "${VENV_DIR}/bin/python ${VENV_DIR}/bin/gunicorn --config ./config/gunicorn.py manage:app &",
"build": "webpack --mode production --config config/webpack.config.js",
"test": "$(npm bin)/cypress run --spec 'cypress/e2e/**/*'",
"ci": "start-server-and-test start ${DEV_URL} test && kill $(cat tmp/gunicorn.pid)"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@fortawesome/fontawesome-free": "^6.2.1",
"autoprefixer": "^10.2.6",
"babel-loader": "^9.1.2",
"config": "^3.3.6",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"cypress": "^11.0.0",
"cypress-localstorage-commands": "^2.2.2",
"del": "^6.0.0",
"eslint": "^8.33.0",
"file-loader": "^6.2.0",
"glob-all": "^3.2.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.1.0",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"postcss": "^8.3.5",
"postcss-loader": "^7.0.2",
"purgecss-webpack-plugin": "^5.0.0",
"sass-loader": "^13.2.0",
"start-server-and-test": "^1.13.1",
"style-loader": "^3.0.0",
"stylelint": "^14.16.1",
"stylelint-webpack-plugin": "^3.3.0",
"terser-webpack-plugin": "^5.1.3",
"url-loader": "^4.1.1",
"webpack": "^5.39.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^5.0.1",
"webpack-config-utils": "^2.3.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@popperjs/core": "^2.9.2",
"@splidejs/splide": "^4.1.4",
"bootstrap": "^5.0.2"
},
"author": "",
"license": "MIT"
}