-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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
57
{
"name": "Caldwell",
"version": "1.0.0",
"description": "Band page for Caldwell",
"keywords": [
"elm",
"webpack"
],
"author": "erlandsona <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:erlandsona/caldwell.git"
},
"license": "MIT",
"engines": {
"node": "8.x"
},
"main": "public/index.html",
"dependencies": {
"autoprefixer": "^6.3.7",
"coffee-loader": "0.7.3",
"coffee-script": "1.12.4",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.2",
"elm": "^0.18.0",
"elm-css-webpack-loader": "3.3.0",
"elm-hot-loader": "^0.5.4",
"elm-webpack-loader": "^4.2.0",
"extract-text-webpack-plugin": "^2.1.0",
"fastclick": "^1.0.6",
"file-loader": "^0.10.1",
"font-awesome": "^4.6.3",
"html-webpack-plugin": "^2.28.0",
"lodash.throttle": "4.1.1",
"postcss-loader": "^1.1.1",
"rambda": "^0.7.0",
"rimraf": "^2.5.3",
"shx": "^0.1.4",
"smoothscroll-polyfill": "^0.3.4",
"style-loader": "^0.13.1",
"unminified-webpack-plugin": "^1.1.0",
"url-loader": "0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-merge": "^3.0.0"
},
"scripts": {
"prebuild": "rimraf public",
"build": "webpack --profile --display-modules --config webpack.coffee",
"build-dev": "webpack --profile --display-modules --config webpack.coffee",
"prewatch": "rimraf public",
"watch": "webpack --progress --watch --config webpack.coffee",
"prestart": "npm i --quiet",
"postinstall": "elm package install -y",
"start": "export TMPDIR=/tmp; webpack-dev-server --hot --inline --config webpack.coffee"
}
}