-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.46 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
{
"licenses": [
{
"type": "MIT",
"url": "https://github.com/remp2020/remp/blob/master/LICENSE.md"
}
],
"private": true,
"scripts": {
"dev": "npx mix",
"watch": "npx mix watch",
"watch-poll": "npx mix watch -- --watch-options-poll=1000",
"hot": "npx mix watch --hot",
"web-production": "npx mix --production",
"iota-dev": "npx cross-env REMP_TARGET=iota mix",
"iota-watch": "npx cross-env REMP_TARGET=iota mix watch",
"iota-watch-poll": "npx cross-env REMP_TARGET=iota mix watch -- --watch-options-poll=1000",
"iota-hot": "npx cross-env REMP_TARGET=iota mix watch --hot",
"iota-production": "npx cross-env REMP_TARGET=iota mix --production",
"lib-dev": "npx cross-env REMP_TARGET=lib mix",
"lib-watch": "npx cross-env REMP_TARGET=lib mix watch",
"lib-watch-poll": "npx cross-env REMP_TARGET=lib mix watch -- --watch-options-poll=1000",
"lib-hot": "npx cross-env REMP_TARGET=lib mix watch --hot",
"lib-production": "npx cross-env REMP_TARGET=lib mix --production",
"production": "node_modules/npm-run-all/bin/npm-run-all/index.js web-production lib-production iota-production",
"all-dev": "node_modules/npm-run-all/bin/npm-run-all/index.js dev lib-dev iota-dev",
"all-watch": "node_modules/npm-run-all/bin/npm-run-all/index.js --parallel watch lib-watch iota-watch",
"all-watch-poll": "node_modules/npm-run-all/bin/npm-run-all/index.js --parallel watch-poll lib-watch-poll iota-watch-poll",
"all-hot": "node_modules/npm-run-all/bin/npm-run-all/index.js --parallel hot lib-hot iota-hot",
"all-production": "node_modules/npm-run-all/bin/npm-run-all/index.js web-production lib-production iota-production"
},
"engines": {
"node": ">=18",
"npm": ">=9",
"yarn": ">2"
},
"dependencies": {
"remp-beam": "file:vendor/remp/beam-module"
},
"devDependencies": {
"cross-env": "^7.0",
"css-loader": "^6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.8",
"resolve-url-loader": "^3.1",
"sass": "^1.32",
"sass-loader": "^13.0",
"vue-loader": "^15.9.5",
"vue-template-compiler": "^2.6.10",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.1"
},
"version": "1.0.0",
"resolutions": {
"jquery": "3.6.0",
"datatables.net-rowgroup": "^1.1.3"
}
}