-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"name": "sling-mountain",
"version": "0.0.1",
"description": "Scenarios for practising climbing rope work at home on #SlingMountain",
"repository": "https://github.com/sparksp/sling-mountain",
"author": "Phill Sparks <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sparksp/sling-mountain/issues"
},
"homepage": "https://github.com/sparksp/sling-mountain#readme",
"scripts": {
"postinstall": "elm-tooling install",
"prebuild": "rimraf dist",
"build": "parcel build src/index.html",
"start": "parcel serve src/index.html",
"gen:tailwind": "elm-tailwind-modules --dir ./gen --tailwind-config tailwind.config.js --with-docs",
"lint:format": "elm-format src/ tests/ --yes",
"lint:review": "elm-review",
"lint": "run-s lint:format lint:review ;",
"test": "elm-test-rs",
"test:watch": "elm-test-rs --watch",
"all": "run-s gen:tailwind build test lint ;"
},
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
},
"devDependencies": {
"@parcel/core": "^2.10.3",
"@parcel/transformer-elm": "^2.10.3",
"autoprefixer": "^10.4.20",
"elm": "^0.19.1-6",
"elm-hot": "^1.1.6",
"elm-review": "^2.12.0",
"elm-tailwind-modules": "^0.5.0",
"elm-tooling": "^1.15.1",
"elm-types": "^0.0.2",
"node-elm-compiler": "^5.0.6",
"npm-run-all": "^4.1.5",
"parcel": "^2.10.3",
"parcel-reporter-static-files-copy": "^1.5.3",
"postcss": "^8.5.1",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
},
"dependencies": {}
}