-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.49 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
{
"name": "spotify-mapper-elm",
"version": "1.0.0",
"description": "An app built with Elm to explore new artists using the Spotify api.",
"main": "index.js",
"engines": {
"node": "10.19.x"
},
"scripts": {
"dev": "webpack-dev-server --port=3000",
"start": "npm install && elm package install -y && webpack-dev-server --port=$PORT",
"build:prod": "BUILD_TO=production elm package install -y && webpack --progress --colors",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FidelisClayton/elm-spotify-mapper.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FidelisClayton/elm-spotify-mapper/issues"
},
"homepage": "https://github.com/FidelisClayton/elm-spotify-mapper#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"dotenv": "^4.0.0",
"elm-css-webpack-loader": "^3.1.0",
"elm-hot-loader": "^0.5.4",
"elm-webpack-loader": "git://github.com/CareerPlug/elm-webpack-loader.git#4.5.1",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"css-loader": "^0.28.0",
"file-loader": "^0.11.1",
"style-loader": "^0.16.1",
"tether-shepherd": "^1.8.1",
"url-parser": "0.0.1",
"vis": "^4.19.1",
"elm": "latest-0.18.0"
}
}