-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.5 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
{
"name": "engine-frontend",
"version": "4.15.0",
"repository": "https://github.com/ds-wizard/engine-frontend",
"license": "Apache-2.0",
"scripts": {
"build": "npm run build:registry && npm run build:wizard",
"build:registry": "COMPONENT=registry ./scripts/build.sh",
"build:wizard": "COMPONENT=wizard ./scripts/build.sh",
"clean": "rm -rf dist",
"guide-links": "node scripts/create-guide-links.js",
"pot": "mkdir -p locale && npm run pot:registry && npm run pot:wizard",
"pot:registry": "COMPONENT=registry node scripts/create-pot-file.js",
"pot:wizard": "COMPONENT=wizard node scripts/create-pot-file.js",
"review": "elm-review",
"start": "npm run start:wizard",
"start:registry": "COMPONENT=registry webpack serve",
"start:wizard": "COMPONENT=wizard webpack serve",
"test": "npm run test:elm && npm run test:wizard:icon-set && npm run test:wizard:locale",
"test:elm": "elm-test && elm-review",
"test:registry": "npm run test:elm",
"test:wizard": "npm run test:elm && npm run test:wizard:icon-set && npm run test:wizard:locale",
"test:wizard:icon-set": "COMPONENT=wizard node scripts/test-icon-set.js",
"test:wizard:locale": "COMPONENT=wizard node scripts/test-locale.js"
},
"devDependencies": {
"@lydell/elm": "^0.19.1-14",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"elm-review": "^2.12.0",
"elm-test": "^0.19.1-revision12",
"elm-webpack-loader": "^8.0.0",
"html-webpack-plugin": "^5.6.3",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.9.2",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"terser-webpack-plugin": "^5.3.11",
"uglify-js": "^3.19.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"dependencies": {
"@codemirror/commands": "^6.8.0",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.10.8",
"@codemirror/legacy-modes": "^6.4.2",
"@codemirror/state": "^6.5.1",
"@codemirror/view": "^6.36.2",
"@fortawesome/fontawesome-free": "^6.7.2",
"@lezer/lr": "^1.4.2",
"axios": "1.7.9",
"axios-retry": "^4.5.0",
"bootstrap": "^5.3.3",
"chart.js": "^4.4.6",
"codemirror": "^6.0.1",
"flatpickr": "^4.6.13",
"po2json": "^1.0.0-beta",
"stream-browserify": "^3.0.0",
"util": "^0.12.5"
},
"overrides": {
"elm": "npm:@lydell/elm@0.19.1-12"
}
}