-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.76 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
53
54
55
56
57
58
59
60
61
62
{
"name": "js-shooter-game",
"version": "1.0.0",
"description": "This is my capstone assessment where I was tasked with building a shooter video game using Javascript and the game engine Phaser.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"build": "webpack --config webpack/prod.js ",
"start": "webpack-dev-server --config webpack/base.js --open"
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
],
"setupFilesAfterEnv": [
"jest-expect-subclass"
],
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(gif|ttf|eot|svg|png|jpg|mp3)$": "<rootDir>/test/mocks/fileMock.js"
}
},
"repository": {
"type": "git",
"url": ""
},
"author": "Alexoid1 <https://github.com/Alexoid1>",
"license": "MIT",
"licenseUrl": "",
"homepage": "",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.0",
"jest-environment-jsdom": "^30.3.0",
"jest-expect-subclass": "^1.0.1",
"raw-loader": "^4.0.2",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-csstree-validator": "^4.0.0",
"stylelint-scss": "^6.1.0",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-transform-runtime": "^7.24.1",
"@babel/preset-env": "^7.24.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.10.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"phaser": "^4.0.0",
"style-loader": "^3.3.4",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
}
}