-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.6 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.6 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
{
"name": "engine-frontend",
"version": "4.28.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": "ELM_HOME=$PWD/elm-stuff/elm-home COMPONENT=registry ./scripts/build.sh",
"build:wizard": "ELM_HOME=$PWD/elm-stuff/elm-home 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",
"replace-kernel-packages": "ELM_HOME=$PWD/elm-stuff/elm-home node elm-kernel-replacements/replace-kernel-packages.mjs",
"start": "npm run start:wizard",
"start:registry": "ELM_HOME=$PWD/elm-stuff/elm-home COMPONENT=registry webpack serve",
"start:wizard": "ELM_HOME=$PWD/elm-stuff/elm-home COMPONENT=wizard webpack serve",
"test": "npm run test:elm && npm run test:guide-links",
"test:elm": "elm-test && elm-review",
"test:guide-links": "node scripts/test-guide-links.js",
"test:registry": "npm run test:elm",
"test:wizard": "npm run test:elm"
},
"devDependencies": {
"@lydell/elm": "^0.19.1-14",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.4",
"elm-review": "^2.13.5",
"elm-test": "^0.19.1-revision17",
"elm-webpack-loader": "^8.0.0",
"html-webpack-plugin": "^5.6.5",
"lodash": "^4.17.23",
"mini-css-extract-plugin": "^2.10.0",
"sass": "1.78.0",
"sass-loader": "^16.0.6",
"terser-webpack-plugin": "^5.3.16",
"uglify-js": "^3.19.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.12.1",
"@codemirror/legacy-modes": "^6.5.2",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.39.11",
"@fortawesome/fontawesome-free": "^6.7.2",
"@lezer/lr": "^1.4.7",
"axios": "1.13.5",
"axios-retry": "^4.5.0",
"bootstrap": "^5.3.8",
"chart.js": "^4.5.1",
"codemirror": "^6.0.2",
"driver.js": "^1.4.0",
"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"
}
}