-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.25 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
{
"name": "lsf-quizz",
"description": "LSF Alphabet Quizz",
"version": "0.0.1",
"author": "Augustin Ragon",
"license": "ISC",
"scripts": {
"start": "webpack-dev-server --hot --inline --host 0.0.0.0 --public 0.0.0.0:3002 --port 3002",
"build": "rimraf dist && webpack",
"elm:install": "elm-package install --yes",
"elm:reinstall": "rm -rf elm-stuff/; yarn elm:install",
"preinstall": "rm -rf node_modules/",
"postinstall": "yarn elm:install; mv node_modules/.bin/elm-make node_modules/.bin/elm-make-original; cp elm-make node_modules/.bin/",
"cleaninstall": "yarn add rimraf && rimraf node_modules elm-stuff && yarn install && yarn elm:install",
"reinstall": "npm i rimraf && rimraf node_modules && npm uninstall -g elm && npm i -g elm && npm i && elm package install"
},
"devDependencies": {
"babel-core": "^6.26.0",
"copy-webpack-plugin": "^4.0.1",
"elm": "^0.18.0",
"elm-hot-loader": "^0.5.4",
"elm-webpack-loader": "^4.4.0",
"eslint": "^4.3.0",
"eslint_d": "^5.0.0",
"glob": "^5.0.14",
"html-webpack-plugin": "^2.17.0",
"prettier": "^1.5.3",
"rimraf": "^2.6.2",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"webpack-merge": "^4.1.1"
}
}