-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.18 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
78
79
80
{
"name": "shooter-game",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "concurrently --kill-others npm:webpackbuild",
"webpackbuild": "npm run clean && webpack --mode=development --watch",
"build": "webpack --mode production",
"clean": "rimraf dist",
"start": "node server.js",
"heroku-postbuild": "webpack -p",
"test": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"jest": {
"setupFiles": [
"jest-canvas-mock"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.1",
"browser-sync": "^2.26.14",
"browser-sync-webpack-plugin": "^2.2.2",
"canvas": "^2.6.1",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.1.0",
"css-loader": "^3.5.2",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"image-webpack-loader": "^6.0.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"phaser": "^3.23.0",
"regenerator-runtime": "^0.13.5",
"rimraf": "^3.0.2",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"url-loader": "^4.1.0",
"wait-on": "^4.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2"
},
"devDependencies": {
"babel-jest": "^25.4.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.4.0",
"jest-canvas-mock": "^2.2.0",
"webpack-dev-middleware": "^3.7.2"
}
}