-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.33 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": "page-rank",
"description": "An Elm application to build a dummy web graph and calculate page rank with explanation of that graph.",
"version": "0.0.1",
"license": "MIT",
"author": "Maik Fröbe",
"repository": {
"type": "git",
"url": "https://github.com/mam10eks/page-rank"
},
"scripts": {
"test": "elm test",
"prestart": "elm-format --yes . && npm test",
"start": "webpack-dev-server --hot --inline",
"prebuild": "rimraf dist && elm-format --yes . && elm test",
"build": "webpack",
"reinstall": "npm i rimraf && rimraf node_modules && npm uninstall -g elm && npm i -g elm && npm i && elm package install"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.3",
"elm": "^0.18.0",
"elm-assets-loader": "^0.3.0",
"elm-format": "^0.6.1-alpha",
"elm-test": "^0.18.12",
"elm-webpack-loader": "^4.5.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.0",
"node-sass": "^4.5.1",
"postcss-loader": "^2.1.5",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.0",
"url-loader": "^0.5.8",
"webpack": "^4.10.2",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
}
}