-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
{
"name": "ShooterGame",
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"setupFiles": [
"jest-canvas-mock"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/test/mocks/styleMock.js",
"\\.(gif|ttf|eot|svg|png)$": "<rootDir>/test/mocks/fileMock.js"
}
},
"version": "1.0.0",
"description": "A capstone project Javascript shooter game",
"main": "index.js",
"repository": "https://github.com/Luzaks/ShooterGame.git",
"author": "Luzaks <kanemekanik@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "webpack-dev-server --mode development",
"prod": "webpack-dev-server --mode production",
"pack": "webpack",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@testing-library/jest-dom": "^5.7.0",
"babel-core": "6",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^5.1.1",
"fetch-mock": "^9.9.0",
"fetch-mock-jest": "^1.3.0",
"jest": "^26.0.1",
"jest-canvas-mock": "^2.2.0",
"jest-fetch-mock": "^3.0.3",
"node-fetch": "^2.6.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"phaser": "^3.23.0"
}
}