-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.08 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "playground-elm",
"version": "3.7.0",
"author": "Chris Camel <[email protected]>",
"description": "My playground I use for playing with fancy and exciting technologies. This one's for elm.",
"homepage": "https://github.com/ccamel",
"license": "MIT",
"keywords": [
"playground",
"elm",
"web-application",
"spa",
"parcel",
"svg",
"demo-site"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ccamel/playground-elm.git"
},
"bugs": {
"url": "https://github.com/ccamel/playground-elm/issues",
"email": "[email protected]"
},
"engines": {
"node": "^18.17.1",
"pnpm": "^9.1.2"
},
"targets": {
"modern": {
"engines": {
"browsers": ">= 50%"
}
}
},
"scripts": {
"build": "BASE_URL=${BASE_URL:-/playground-elm/} parcel build src/index.html --no-source-maps --public-url ./",
"serve": "BASE_URL=/ parcel src/index.html",
"release": "release-it",
"lint": "elm-review && elm-format --validate src && eslint .",
"elm-json": "elm-json"
},
"files": [
"dist",
"README.md",
"screenshot.webp",
"LICENSE"
],
"dependencies": {
"animate.css": "^4.1.1",
"elm-canvas": "^2.2.4",
"elm-pep": "^1.0.6",
"file-loader": "^6.2.0",
"font-awesome": "^4.7.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.15.0",
"@parcel/config-default": "^2.12.0",
"@parcel/transformer-elm": "2.12.0",
"bulma": "^1.0.2",
"elm": "0.19.1-6",
"elm-analyse": "^0.16.5",
"elm-format": "^0.8.7",
"elm-hot": "^1.1.6",
"elm-json": "^0.2.13",
"elm-review": "^2.12.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"github-fork-ribbon-css": "^0.2.3",
"node-elm-compiler": "^5.0.6",
"parcel": "^2.12.0",
"parcel-reporter-static-files-copy": "^1.5.3",
"posthtml-expressions": "^1.11.4",
"prettier": "^3.4.1",
"release-it": "^17.10.0",
"resolve-url-loader": "^5.0.0",
"rimraf": "^6.0.1"
}
}