-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.53 KB
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
{
"name": "coin-runner",
"description": "Endless runner game",
"main": "src/index.js",
"scripts": {
"test": "jest",
"build": "webpack --config webpack/prod.js ",
"start": "webpack serve --config webpack/base.js --open"
},
"dependencies": {
"@babel/runtime": "^7.13.17",
"babel-core": "^6.26.3",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^8.1.1",
"express": "^4.17.1",
"html-webpack-plugin": "^5.3.1",
"jest-resolve": "^26.6.2",
"phaser": "^3.54.0",
"regenerator-runtime": "^0.13.7",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.26.3",
"webpack-merge": "^5.7.3"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"css-loader": "^5.2.4",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"jest-fetch-mock": "^3.0.3",
"raw-loader": "^4.0.2",
"style-loader": "^2.0.0",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.17.2",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.36.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}