-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "SpeedLazer",
"version": "2.0.0",
"description": "2D sidescrolling shmup",
"main": "index.js",
"repository": "http://speedlazer.net",
"author": "Matthijs Groen <[email protected]>",
"contributors": [
"Marciano Schildmeijer <[email protected]>"
],
"license": "MIT",
"private": false,
"dependencies": {
"phaser": "^3.6.0"
},
"scripts": {
"start": "webpack && webpack-dev-server --mode=development",
"build": "webpack && webpack-dev-server --mode=production",
"lint": "eslint src",
"prettier": "yarn run prettier:js",
"prettier:js": "prettier '{,!(node_modules|bundle)/**/}*.js' --write",
"precommit": "yarn lint && yarn prettier",
"dist": "webpack"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.4.0",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"clean-webpack-plugin": "^0.1.19",
"eslint-plugin-compat": "^2.2.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
}
}