forked from ewendel/elm-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
55
56
{
"name": "elm-workshop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "node scripts/build.js",
"start": "node scripts/start.js",
"package": "elm-package",
"make": "elm-make",
"repl": "elm-repl",
"reactor": "elm-reactor",
"book": "gitbook serve",
"build:book": "gitbook build ./ ./docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ewendel/elm-workshop.git"
},
"author": "Erik Wendel, Ingar Almklov",
"license": "ISC",
"bugs": {
"url": "https://github.com/ewendel/elm-workshop/issues"
},
"homepage": "https://github.com/ewendel/elm-workshop#readme",
"dependencies": {
"create-elm-app": "^0.3.2",
"elm": "^0.18.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.0",
"autoprefixer": "6.5.4",
"chalk": "1.1.3",
"clean-webpack-plugin": "0.1.14",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "0.26.1",
"dotenv": "^2.0.0",
"elm": "^0.18.0",
"elm-hot-loader": "0.4.2",
"elm-test": "0.18.0",
"elm-webpack-loader": "3.1.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"gitbook-cli": "^2.3.0",
"html-webpack-plugin": "2.24.1",
"http-proxy-middleware": "^0.17.3",
"minimist": "1.2.0",
"postcss-loader": "1.2.1",
"react-dev-utils": "0.4.2",
"style-loader": "0.13.1",
"url-loader": "^0.5.7",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2"
}
}