-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.06 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "flaskcommerce",
"version": "1.0.0",
"description": "E-Commerce for Flask",
"license": "MIT",
"private": true,
"scripts": {
"start": "NODE_ENV=development webpack serve --mode development --config config/webpack.config.js",
"testbuild": "NODE_ENV=testbuild webpack --mode production --config config/webpack.config.js",
"staging": "NODE_ENV=staging webpack --mode production --config config/webpack.config.js",
"poststaging": "./push_staging.sh",
"testing": "NODE_ENV=testing webpack --mode production --config config/webpack.config.js",
"production": "NODE_ENV=production webpack --mode production --config config/webpack.config.js",
"predeploy": "./kill_devserver.sh",
"deploy": "NODE_ENV=production webpack --mode production --config config/webpack.config.js",
"postdeploy": "./push_production.sh",
"test": "node_modules/.bin/cypress run --spec 'cypress/e2e/**/*' --config-file 'config/cypress-dev.config.js'"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/plugin-transform-template-literals": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@vue/compiler-sfc": "^3.2.31",
"autoprefixer": "10.4.19",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.0",
"compression-webpack-plugin": "^11.1.0",
"config": "^3.3.7",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.6.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"cssnano": "^6.0.1",
"cypress": "^13.5.0",
"del": "^6.0.0",
"file-loader": "^6.2.0",
"glob-all": "^3.2.1",
"html-loader": "^5.0.0",
"html-webpack-partials-plugin": "^0.8.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.5.3",
"path": "^0.12.7",
"postcss": "^8.4.6",
"postcss-loader": "^8.1.1",
"purgecss-webpack-plugin": "^6.0.0",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.0",
"stylelint": "^16.3.1",
"stylelint-webpack-plugin": "^5.0.0",
"terser-webpack-plugin": "^5.3.1",
"url-loader": "^4.1.1",
"vue-loader": "^17.0.0",
"vue-style-loader": "^4.1.3",
"webpack": "^5.69.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^5.0.1",
"webpack-config-utils": "^2.3.1",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@popperjs/core": "^2.11.2",
"@vuelidate/core": "^2.0.0-alpha.26",
"@vuelidate/validators": "^2.0.0-alpha.22",
"body-scroll-lock": "^3.1.5",
"bootstrap": "^5.1.3",
"click-outside-vue3": "^4.0.1",
"dart-sass": "^1.25.0",
"dayjs": "^1.10.7",
"jquery": "^3.6.0",
"js-cookie": "^3.0.1",
"maska": "^2.1.8",
"promise-polyfill": "^8.2.0",
"qs": "^6.10.3",
"regenerator-runtime": "^0.14.0",
"slick-carousel": "^1.8.1",
"vue": "^3.2.31",
"vue-router": "^4.0.13",
"vue3-datepicker": "^0.4.0",
"vuelidate": "^0.7.7",
"vuex": "^4.0.2",
"whatwg-fetch": "^3.6.2"
},
"main": "index.js",
"author": ""
}