-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.25 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.25 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
72
73
74
75
76
77
78
79
80
81
{
"name": "beam-module",
"version": "1.0.0",
"private": true,
"licenses": [
{
"type": "MIT",
"url": "https://github.com/remp2020/remp/blob/master/LICENSE.md"
}
],
"scripts": {
"dev": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"web-production": "mix --production",
"iota-dev": "cross-env REMP_TARGET=iota mix",
"iota-watch": "cross-env REMP_TARGET=iota mix watch",
"iota-watch-poll": "cross-env REMP_TARGET=iota mix watch -- --watch-options-poll=1000",
"iota-hot": "cross-env REMP_TARGET=iota mix watch --hot",
"iota-production": "cross-env REMP_TARGET=iota 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 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",
"development": ""
},
"engines": {
"node": ">=18",
"npm": ">=9",
"yarn": ">=2"
},
"packageManager": "yarn@2.4.3",
"dependencies": {
"@babel/core": "^7.0",
"@remp/js-commons": "^2.3.1",
"@tweenjs/tween.js": "^17.4.0",
"animate.css": "^3.7.2",
"autosize": "^4.0.2",
"axios": "^0.21.1",
"bootstrap": "^3.4.1",
"bootstrap-notify": "^3.1.3",
"bootstrap-select": "^1.13.18",
"core-js": "^3.8.1",
"d3": "^5.16.0",
"d3-sankey": "^0.12.3",
"datatables.net": "^1.10.25",
"datatables.net-buttons": "^2.3",
"datatables.net-responsive": "^2.2.9",
"datatables.net-rowgroup": "^1.1.3",
"eonasdan-bootstrap-datetimepicker": "^4.17.47",
"fnv1a": "^1.0.1",
"global": "^4.3.2",
"google-material-color": "^1.3.1",
"jquery": "3.6.0",
"jquery-placeholder": "^2.3.1",
"jquery-typeahead": "^2.11",
"laravel-mix-polyfill": "^3.0.0",
"laravel-mix": "^6.0.49",
"lodash": "^4.17.20",
"material-design-iconic-font": "^2.2.0",
"moment": "^2.29.0",
"moment-timezone": "^0.5.41",
"node-waves": "^0.7.6",
"pluralize": "^7.0.0",
"rison": "^0.1.1",
"rrule": "2.6.8",
"vue": "^2.7",
"vue-echarts": "^3.0.9",
"vue2-filters": "^0.6.0",
"vuex": "^3.1.0",
"vuex-persistedstate": "^2.5.4"
}
}