-
Notifications
You must be signed in to change notification settings - Fork 146
/
package.json
90 lines (90 loc) · 3.2 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
88
89
90
{
"name": "Ceres",
"license": "AGPL-3.0",
"version": "5.0.71",
"repository": {
"type": "git",
"url": "https://github.com/plentymarkets/plugin-ceres.git"
},
"scripts": {
"start": "webpack --watch --progress",
"build": "npm run build:prod && npm run build:dev",
"build:dev": "webpack --progress",
"build:prod": "webpack --env.prod --progress",
"build:js": "npm run build:js:dev && npm run build:js:prod",
"build:js:dev": "webpack --config-name scripts --progress && webpack --config-name client --progress && webpack --config-name server --progress",
"build:js:prod": "webpack --config-name scripts --env.prod --progress && webpack --config-name client --env.prod --progress && webpack --config-name server --env.prod --progress",
"build:sass": "npm run build:sass:dev && npm run build:sass:prod",
"build:sass:dev": "webpack --config-name styles --progress",
"build:sass:prod": "webpack --config-name styles --env.prod --progress",
"build:sass-vendor": "node tools/bundleSass.js",
"lint": "npm run lint:js && npm run lint:sass",
"lint:js": "eslint resources/js/src",
"lint:sass": "stylelint \"resources/scss/**/*.scss\"",
"prebuild": "npm run build:sass-vendor",
"postbuild": "",
"compareTranslations": "node tools/compareTranslations.js",
"test": "npm run test:monetaryFormatter",
"test:e2e": "cypress run --browser electron",
"test:e2e:dev": "cypress open --browser electron",
"test:monetaryFormatter": "node -r esm tools/testMonetaryFormatter.js"
},
"browserslist": [
"> .25%"
],
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"autoprefixer": "^8.6.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^3.5.3",
"cypress": "^8.5.0",
"cypress-file-upload": "^4.1.1",
"del": "^2.2.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.13.0",
"eslint-loader": "^2.2.1",
"esm": "^3.2.25",
"expose-loader": "^0.7.5",
"glob": "^7.1.6",
"mini-css-extract-plugin": "^0.8.2",
"moment-locales-webpack-plugin": "^1.2.0",
"postcss": "^8.4.31",
"postcss-loader": "^3.0.0",
"postcss-scss": "^1.0.5",
"q": "^1.5.1",
"sass": "^1.49.9",
"sass-loader": "^7.3.1",
"serialize-javascript": "^3.1.0",
"stylelint": "^14.16.1",
"stylelint-config-twbs-bootstrap": "^7.0.0",
"vue-loader": "^15.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-fix-style-only-entries": "^0.3.1",
"webpack-require-from": "^1.8.1"
},
"dependencies": {
"bootstrap": "4.4.1",
"core-js": "^3.6.5",
"custom-event-polyfill": "^1.0.0",
"dayjs": "^1.8.26",
"detect-browser": "^4.8.0",
"flag-icon-css": "^2.9.0",
"font-awesome": "^4.6.3",
"jquery": "^3.5.1",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"owl.carousel": "2.2.0",
"popper.js": "^1.16.1",
"vue": "^2.6.12",
"vue-lazy-hydration": "^2.0.0-beta.4",
"vue-template-compiler": "^2.6.12",
"vue-virtual-scroller": "^1.0.10",
"vuex": "^3.3.0"
}
}