-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "elm-hangman",
"description": "The game of Hangman written in Elm.",
"version": "0.2.0",
"license": "MIT",
"author": "Shy Alter",
"repository": {
"type": "git",
"url": "https://github.com/puemos/elm-hangman"
},
"keywords": [
"elm",
"hangman",
"webpack",
"game"
],
"scripts": {
"start": "webpack-dev-server --hot --inline",
"prebuild": "rimraf dist",
"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",
"bootstrap-sass": "^3.4.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.3",
"elm": "^0.18.0",
"elm-webpack-loader": "^4.3.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"jquery": "^3.5.0",
"node-sass": "^7.0.0",
"postcss-loader": "^1.3.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.0",
"url-loader": "^0.5.8",
"webpack": "^2.3.1",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^4.1.0"
}
}