-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 1.43 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
{
"name": "unconf",
"version": "1.0.0",
"description": "For those times we all said… 'why isn't there an app for this?'",
"main": "index.js",
"scripts": {
"elm": "node_modules/.bin/elm",
"elm-format": "node_modules/.bin/elm-format",
"elm-make": "elm make client/src/Main.elm --optimize --output=server/pitches/static/main.js",
"elm-reactor": "elm reactor --port=3000",
"elm-watch": "chokidar 'client/src/*.elm' -c 'npm run elm-make' --initial",
"pitching": "npm run elm-watch & npm run server-pitching",
"schedule": "npm run elm-watch & npm run server-schedule",
"server-pitching": "json-server ./json-server/db.json -r ./json-server/routes-pitching.json --static ./server/pitches/static --middlewares ./json-server/voting-post.js ./json-server/voting-delete.js -i uuid -w -p 3000",
"server-schedule": "json-server ./json-server/db.json -r ./json-server/routes-schedule.json --static ./server/pitches/static --middlewares ./json-server/voting-post.js ./json-server/voting-delete.js -i uuid -w -p 3000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyoung/unconf.git"
},
"author": "kyoung",
"license": "ISC",
"bugs": {
"url": "https://github.com/kyoung/unconf/issues"
},
"homepage": "https://github.com/kyoung/unconf#readme",
"dependencies": {
"chokidar-cli": "^1.2.2",
"elm": "^0.19.0-bugfix6",
"elm-format": "^0.8.1",
"json-server": "^0.14.2"
}
}