-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.75 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.75 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
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
{
"name": "plentymarkets-feedback",
"license": "AGPL-3.0",
"version": "5.0.4",
"repository": {
"type": "git",
"url": "https://github.com/plentymarkets/feedback-plugin.git"
},
"engines": {
"node": "16"
},
"scripts": {
"build": "npm run build:prod && npm run build:dev",
"build:dev": "npm run build:js:dev && npm run build:sass:dev",
"build:prod": "npm run build:js:prod && npm run build:sass:prod",
"build:js:dev": "webpack --config tools/webpack/scripts.config.js --progress && webpack --config tools/webpack/scripts-server.config.js --progress",
"build:js:prod": "webpack --config tools/webpack/scripts.config.js --env production --progress && webpack --config tools/webpack/scripts-server.config.js --env production --progress",
"build:sass:dev": "webpack --config tools/webpack/styles.config.js --progress",
"build:sass:prod": "webpack --config tools/webpack/styles.config.js --env production --progress",
"lint": "npm run lint:js && npm run lint:sass",
"lint:js": "eslint --ext .js,.vue resources/js/src --fix",
"lint:sass": "stylelint \"resources/css/**/*.scss\"",
"prebuild": "rm -rf resources/js/dist/chunks"
},
"browserslist": [
"> .25%"
],
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.0",
"autoprefixer": "^10.0.1",
"babel-loader": "^8.1.0",
"css-loader": "^5.0.0",
"del": "^6.0.0",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-vue": "^7.8.0",
"eslint-webpack-plugin": "^2.5.3",
"esm": "^3.2.25",
"expose-loader": "^1.0.1",
"glob": "^7.1.6",
"mini-css-extract-plugin": "^1.0.0",
"moment-locales-webpack-plugin": "^1.2.0",
"node-sass": "^8.0.0",
"postcss": "^8.4.31",
"postcss-loader": "^4.0.4",
"postcss-scss": "^3.0.2",
"q": "^1.5.1",
"sass-loader": "^13.3.2",
"stylelint": "^13.7.2",
"stylelint-config-twbs-bootstrap": "^2.1.0",
"tapable": "^2.2.0",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^5.97.1",
"webpack-cli": "^4.10.0",
"webpack-remove-empty-scripts": "^1.0.4",
"webpack-require-from": "^1.8.6"
},
"dependencies": {
"core-js": "^3.10.1",
"vue": "^2.6.12",
"vuex": "^3.3.0"
}
}