-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
49 lines (49 loc) · 1.83 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
{
"private": true,
"scripts": {
"dev": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"web-production": "mix --production",
"lib-dev": "cross-env REMP_TARGET=lib mix",
"lib-watch": "cross-env REMP_TARGET=lib mix watch",
"lib-watch-poll": "cross-env REMP_TARGET=lib mix watch -- --watch-options-poll=1000",
"lib-hot": "cross-env REMP_TARGET=lib mix watch --hot",
"lib-production": "cross-env REMP_TARGET=lib mix --production",
"production": "node_modules/npm-run-all/bin/npm-run-all/index.js web-production lib-production",
"all-dev": "node_modules/npm-run-all/bin/npm-run-all/index.js dev lib-dev",
"all-watch": "node_modules/npm-run-all/bin/npm-run-all/index.js --parallel watch lib-watch",
"all-watch-poll": "node_modules/npm-run-all/bin/npm-run-all/index.js --parallel watch-poll lib-watch-poll",
"all-hot": "node_modules/npm-run-all/bin/npm-run-all/index.js --parallel hot lib-hot",
"development": ""
},
"engines": {
"node": ">=18",
"npm": ">=9",
"yarn": ">=2"
},
"packageManager": "[email protected]",
"dependencies": {
"remp-campaign": "file:extensions/campaign-module"
},
"devDependencies": {
"axios": "^0.21.1",
"cross-env": "^7.0",
"css-loader": "^6.0",
"laravel-mix": "^6.0.12",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.8",
"resolve-url-loader": "^5.0.0",
"sass": "^1.59.2",
"sass-loader": "^13.0",
"vue-loader": "^15.9.8",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.1"
},
"resolutions": {
"@remp/js-commons": "portal:../Package/remp"
}
}