-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.9 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.9 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
{
"name": "debug-trainer",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/kickstartcoding/debug_trainer_app.git"
},
"author": "Kickstart Coding",
"license": "ACSL",
"keywords": [
"debug",
"debugging"
],
"scripts": {
"dev:web:elm": "elm-live elm/Main.elm --port 3333 --dir elm --start-page elm-preview-index.html -- --output elm/Main.js",
"dev:web:parcel": "parcel js/index.html --out-dir dist --port 2222",
"dev:tauri": "tauri dev",
"dev:browser": "run-p dev:web:*",
"dev": "run-p dev:*",
"eslint": "eslint ./js/**/*.ts --ext .ts",
"build-ports": "elm-ts-interop-pro --gen-directory=elm --definitions=elm/Main/Definitions.elm --gen-module=Main.Interop --entrypoint Main --output elm/Main/index.d.ts",
"build:elm": "elm make elm/Main.elm --output=elm/Main.js --optimize",
"build:parcel": "eslint && tsc --noEmit && parcel build js/index.html --out-dir dist",
"build:tauri": "tauri build",
"tauri": "tauri",
"build": "run-s build:*",
"elm-review": "elm-review",
"test": "elm-test-rs",
"elm-tooling": "elm-tooling",
"elm-review:watch": "npm run elm-review; chokidar \"{elm,review}/**/*.elm\" -c \"npm run elm-review\"",
"serve": "parcel serve js/index.html --out-dir dist --port 2222"
},
"devDependencies": {
"@tauri-apps/cli": "^1.0.0-beta.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chokidar-cli": "^2.1.0",
"elm": "^0.19.1-5",
"elm-hot": "^1.1.6",
"elm-live": "^4.0.2",
"elm-review": "^2.5.2",
"elm-tooling": "^1.3.0",
"eslint": "^7.26.0",
"node-elm-compiler": "^5.0.6",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.5",
"typescript": "^4.2.4"
},
"dependencies": {
"@tauri-apps/api": "^1.0.0-beta.1"
},
"optionalDependencies": {
"@incrementalelm/elm-ts-interop-pro": "^0.0.21"
}
}