-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
29 lines (29 loc) · 993 Bytes
/
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
{
"name": "elm-tutorial",
"version": "1.0.0",
"description": "Source code for a tutorial on building web applications",
"main": "app.js",
"dependencies": {
"express": "^4.14.0"
},
"devDependencies": {
"express": "^4.14.0",
"nodemon": "^1.10.2"
},
"scripts": {
"serve": "nodemon --watch ./server ./server/index.js",
"clean-build": "rm -rf elm-stuff; elm package install -y; elm make ./src/Main.elm --output=./assets/js/app.js;",
"build": "elm make ./src/Main.elm --output=./assets/js/app.js;",
"test": "cd tests; elm package install -y; elm make ./Test.elm --output=test.js; node -r ./mock-document ./test.js; cd ..;"
},
"repository": {
"type": "git",
"url": "https://github.com/kevinbgreene/elm-tutorial.git"
},
"author": "Kevin Greene <[email protected]>",
"license": "BSD3",
"bugs": {
"url": "https://github.com/kevinbgreene/elm-tutorial/issues"
},
"homepage": "https://github.com/kevinbgreene/elm-tutorial"
}