-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "elmfiddle.io",
"version": "1.0.0",
"description": "Jobs:",
"main": "index.js",
"scripts": {
"prebuild": "gulp clean",
"installextra": "npm install leveldown",
"postinstallextra": "npm install node-elm-compiler",
"build": "LC_ALL=C.UTF-8 gulp build",
"prestart": "npm run build",
"postinstall": "node install-git-packages.js",
"npm run dev": "gulp",
"start": "LC_ALL=C.UTF-8 forever start dist/server.js",
"server": "elm make elmserver/server.elm --output dist/server.js && echo \"Elm.worker(Elm.Main);\" >> dist/server.js && node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.0",
"chalk": "^1.1.1",
"cuid": "^1.3.8",
"del": "^2.2.0",
"express": "^4.13.4",
"forever": "^0.15.1",
"gulp": "^3.9.1",
"gulp-util": "^3.0.7",
"leveldown": "^1.3.1",
"levelup": "^1.3.1",
"mime": "^1.3.4",
"multiparty": "^4.1.2",
"ncp": "^2.0.0",
"node-elm-compile-string": "^1.0.0",
"node-elm-compiler": "^3.0.0",
"node-uuid": "^1.4.7",
"rimraf": "^2.5.2",
"shelljs": "^0.6.0",
"vdom-to-html": "^2.2.0",
"virtual-dom": "^2.1.1"
},
"devDependencies": {
"chalk": "^1.1.1",
"gulp": "^3.9.1",
"gulp-elm": "^0.4.1",
"gulp-insert": "^0.5.0",
"gulp-livereload": "^3.8.1",
"gulp-nodemon": "^2.0.6",
"gulp-shell": "^0.5.2",
"gulp-util": "^3.0.7",
"node-notifier": "^4.5.0",
"open": "0.0.5"
}
}