-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 886 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 886 Bytes
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
{
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.3.6",
"postcss": "^8.3.8",
"postcss-cli": "^9.0.1",
"postcss-elm-tailwind": "^0.11.0",
"tailwindcss": "^2.2.16"
},
"scripts": {
"copy-resources": "cp -r static/. dist/;",
"build-elm": "elm make src/Main.elm --output=dist/elm.js",
"build-elm-prod": "elm make src/Main.elm --output=dist/elm.js --optimize",
"build-tw": "postcss main.css -o dist/main.css",
"build": "yarn build-tw && yarn build-elm && yarn copy-resources",
"build-prod": "yarn build-tw && yarn build-elm-prod && NODE_ENV=production yarn build-tw && yarn copy-resources",
"check-format": "elm-format src/**/*.elm --validate",
"watch-elm": "watch 'yarn build-elm' src"
},
"dependencies": {
"postcss-loader": "^6.1.1",
"serve": "^12.0.1",
"watch": "^1.0.2",
"yarn": "^1.22.15"
}
}