-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.24 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
{
"name": "elm-boiler-plate",
"version": "1.0.0",
"description": "a boiler plate for elm projects",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "elm-live src/elm/Main.elm --output=public/elm.js --dir=public --open --debug --pushstate",
"build": "npm run css-build; elm-make src/elm/Main.elm --output=public/elm.js",
"css-watch": "postcss ./src/css/index.css --output ./public/style.min.css --watch --config ./postcss.config.js",
"css-build": "postcss ./src/css/index.css --output ./public/style.min.css --config ./postcss.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astroash/elm-spa-boiler-plate.git"
},
"author": "John Whiles && Astro Ash",
"license": "ISC",
"bugs": {
"url": "https://github.com/astroash/elm-spa-boiler-plate/issues"
},
"homepage": "https://github.com/astroash/elm-spa-boiler-plate#readme",
"devDependencies": {
"elm-live": "^2.7.5",
"autoprefixer": "^7.1.6",
"postcss-clean": "^1.1.0",
"postcss-cli": "^4.1.1",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^6.2.0",
"postcss-import": "^11.0.0"
},
"dependencies": {
"tachyons-custom": "^4.9.0"
}
}