-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.29 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": "DAAT",
"version": "1.0.0",
"description": "Volunteer assistant",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"devbug": "elm-live src/elm/Main.elm --output=public/elm.js --dir=public --open --debug --pushstate & npm run css-watch",
"dev": "elm-live src/elm/Main.elm --output=public/elm.js --dir=public --open --pushstate & npm run css-watch",
"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/InFact-coop/DAAT.git"
},
"author": "inFACT",
"license": "ISC",
"bugs": {
"url": "https://github.com/InFact-coop/DAAT/issues"
},
"homepage": "https://github.com/InFact-coop/DAAT#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"
}
}