-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"author": "Jordy Moos",
"name": "elm-pixel-boulder-game",
"version": "0.0.1",
"description": "Elm Pixel Boulder Game Engine",
"main": "src/index.js",
"scripts": {
"test": "elm-test",
"start": "npm run dev",
"dev": "webpack-dev-server --hot --colors --port 3000",
"build": "webpack",
"prod": "webpack -p",
"itch": "webpack -p --env.NODE_ENV=itch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JordyMoos/elm-pixel-boulder-game.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"elm": "^0.19.0",
"elm-hot-webpack-loader": "^1.0.2",
"elm-test": "^0.19.0",
"elm-verify-examples": "^3.1.0",
"elm-webpack-loader": "^5.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"koa-connect-history-api-fallback": "^0.3.1",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.11.0",
"resolve-url-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"url-loader": "^1.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"aframe": "^0.9.2",
"aframe-extras": "^6.0.0",
"purecss": "^1.0.0"
}
}