-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.16 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
{
"name": "elm-pages-example",
"version": "1.0.0",
"description": "Example site built with elm-pages.",
"scripts": {
"start": "elm-pages develop & yarn watch:styles",
"dev": "yarn start",
"serve": "yarn build && http-server ./dist -a localhost -p 3000 -c-1",
"build": "NODE_ENV=production yarn build:styles && elm-pages build",
"docs": "yarn elm-doc-preview -p 8080",
"netlify:dev": "yarn build && yarn netlify dev",
"up-deps": "yarn upgrade --latest && elm-json upgrade --unsafe --yes",
"build:styles": "yarn run postcss tailwind.css -o gen/tailwind-gen.css",
"watch:styles": "yarn run postcss tailwind.css -o gen/tailwind-gen.css --watch"
},
"author": "Philipp Krüger",
"license": "MIT",
"dependencies": {
"@fullhuman/postcss-purgecss": "^2.2.0",
"cssnano": "^4.1.10",
"highlight.js": "^10.1.1",
"node-sass": "^4.12.0",
"sass": "^1.23.7",
"sharp": "^0.25.2",
"tailwindcss": "^1.4.6"
},
"devDependencies": {
"elm": "0.19.1",
"elm-doc-preview": "5.0.3",
"elm-json": "^0.2.7",
"elm-pages": "1.4.2",
"http-server": "0.12.3",
"netlify-cli": "^2.58.0",
"postcss-cli": "^7.1.1"
}
}