-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"name": "elm-daily-highlights",
"description": "Write down daily highlights and save them to the browser's local storage",
"version": "1.0.0",
"license": "MIT",
"author": "Sergey Zubtsovskiy",
"repository": {
"type": "git",
"url": "https://github.com/szubtsovskiy/elm-daily-highlights.git"
},
"scripts": {
"start": "node_modules/http-server/bin/http-server ./dist -p $PORT",
"build": "rimraf dist && webpack",
"dev": "webpack-dev-server --hot --inline --content-base app/",
"watch": "webpack --watch"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"bootstrap-sass": "^3.3.6",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"elm": "^0.17.0",
"elm-hot-loader": "^0.3.2",
"elm-webpack-loader": "^3.0.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"font-awesome": "^4.6.3",
"html-webpack-plugin": "^2.17.0",
"node-sass": "^3.7.0",
"postcss-loader": "^0.9.1",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.1"
},
"dependencies": {
"http-server": "^0.9.0"
}
}