forked from Autapomorph/dino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.35 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "dino",
"description": "A Chrome Dino game clone built with Phaser 3",
"version": "1.2.1",
"homepage": "https://github.com/Autapomorph/dino",
"author": "Autapomorph (https://github.com/Autapomorph)",
"repository": {
"type": "git",
"url": "git+https://github.com/Autapomorph/dino"
},
"bugs": {
"url": "https://github.com/Autapomorph/dino/issues"
},
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --config webpack/dev.js",
"build": "webpack --config webpack/prod.js",
"build:analyze": "npm run build -- --env.analyze",
"lint": "run-s -c lint:js lint:styles",
"lint:js": "eslint 'src/**/*.js'",
"lint:styles": "stylelint 'src/**/*.css'",
"lint:staged": "lint-staged --relative"
},
"dependencies": {
"lodash": "^4.17.20",
"phaser": "^3.24.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^7.0.2",
"css-loader": "^4.2.0",
"dotenv-webpack": "^2.0.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"favicons-webpack-plugin": "^4.2.0",
"file-loader": "^6.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"ignore": "^5.1.8",
"lint-staged": "^10.2.11",
"mini-css-extract-plugin": "^0.9.0",
"npm-run-all": "^4.1.5",
"offline-plugin": "^5.0.7",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"raw-loader": "^4.0.1",
"style-loader": "^1.2.1",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"terser-webpack-plugin": "^4.0.0",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.1",
"webpackbar": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged"
}
}
}