-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "rpg-game",
"version": "1.0.0",
"description": "An RPG game made with Phaser 3 and Webpack",
"main": "index.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "webpack",
"start": "webpack serve",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Psiale/rpg-game.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Psiale/rpg-game/issues"
},
"homepage": "https://Psiale.github.io/rpg-game",
"dependencies": {
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"node-fetch": "^2.6.1",
"phaser": "^3.24.1",
"regenerator-runtime": "^0.13.7",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.12.7",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^6.3.1",
"css-loader": "^5.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"file-loader": "^6.2.0",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.17.2",
"webpack-dev-server": "^3.11.0"
}
}