This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2 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
{
"name": "elm-gossip",
"version": "0.3.3",
"scripts": {
"start": "snowpack dev",
"build": "run-s versionify build-snowpack compress clean",
"build-snowpack": "snowpack build",
"compress": "terser docs/_dist_/elm/Main.js --module --compress 'pure_funcs=[F2,F3,F4,F5,F6,F7,F8,F9,A2,A3,A4,A5,A6,A7,A8,A9],pure_getters,passes=2,unsafe_comps,unsafe' | terser --mangle --module --output docs/_dist_/elm/Main.js",
"clean": "rm -rf docs/_dist_/elm/*/ docs/_dist_/styles/*.css docs/_dist_/styles/*.scss",
"versionify": "node -p 'JSON.stringify({ version: require(\"./package.json\").version })' > ./src/version.json",
"create-standalone": "run-s build inline remove-exports",
"inline": "combohtml -i docs/standalone.html -o docs/standalone.html",
"remove-exports": "replace-in-files docs/standalone.html --string='export default Elm;' --string='export default json;' --replacement='' --ignore-case && replace-in-files docs/standalone.html --string='export const' --replacement='const' --ignore-case"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"browserslist": "^4.16.5",
"elm": "^0.19.1-3",
"is-svg": "^4.2.2",
"normalize.css": "^8.0.1",
"nth-check": "^2.0.1",
"sass": "^1.29.0",
"ws": "^7.4.6"
},
"devDependencies": {
"@snowpack/plugin-optimize": "^0.2.8",
"@snowpack/plugin-postcss": "^1.2.0",
"@snowpack/plugin-sass": "^1.1.1",
"autoprefixer": "^10.2.5",
"combohtml": "^1.3.0",
"cssnano": "^4.1.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"postcss-cli": "^8.3.1",
"snowpack": "^2.17.0",
"snowpack-plugin-elm": "^0.4.0",
"terser": "^5.6.1"
},
"resolutions": {
"http-proxy": "^1.18.1",
"is-svg": "^4.2.2",
"ssri": "^8.0.1",
"lodash": "^4.17.21",
"hosted-git-info": "^2.8.9",
"browserslist": "^4.16.5",
"ws": "^7.4.6",
"normalize-url": "^4.5.1",
"glob-parent": "^6.0.1",
"nth-check": "^2.0.1",
"ansi-regex": "^5.0.1",
"minimist": "^1.2.6"
}
}