-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.07 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
{
"name": "shooter-game",
"version": "1.0.0",
"description": "The goal of this project is build a full plataform game such as the space shooter hame ",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"start": "npm run build && webpack-dev-server --host=0.0.0.0 --port=8000 --disable-host-check",
"buildwatch": "webpack --config webpack.config.js --watch",
"test": "jest",
"watchtest": "jest --watch *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rubenpazch/shooter-game.git"
},
"author": "Ruben Paz Chuspe",
"license": "ISC",
"bugs": {
"url": "https://github.com/rubenpazch/shooter-game/issues"
},
"homepage": "https://github.com/rubenpazch/shooter-game",
"keywords": [],
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"canvas": "^2.6.1",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.1.0",
"raw-loader": "^4.0.1",
"style-loader": "^1.2.1",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.8.0",
"stylelint-scss": "^3.17.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"file-loader": "^6.0.0",
"lodash": "^4.17.19",
"phaser": "^3.23.0",
"phaser3-rex-plugins": "^1.1.19"
},
"jest": {
"modulePaths": [
"/shared/vendor/modules"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js",
"^config$": "<rootDir>/configs/app-config.js"
},
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"heroku-run-build-script": true
}