-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "elm-todo-rest-api",
"version": "0.2.0",
"description": "elm todomvc with a stupid but persistent json rest api",
"main": "api.js",
"scripts": {
"api": "node api.js",
"build": "webpack",
"watch": "webpack --watch",
"dev": "webpack-dev-server --port 8000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewsuzuki/elm-todomvc-with-api.git"
},
"keywords": [
"elm",
"todomvc",
"todo",
"app",
"api",
"ajax",
"json",
"persistent",
"database",
"effects",
"tasks"
],
"author": "Andrew Suzuki",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewsuzuki/elm-todomvc-with-api/issues"
},
"homepage": "https://github.com/andrewsuzuki/elm-todomvc-with-api#readme",
"dependencies": {
"css-loader": "^0.23.1",
"elm-webpack-loader": "^3.0.3",
"file-loader": "^0.9.0",
"json-server": "^0.8.14",
"lodash": "^4.13.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1"
}
}