-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "rpg-game",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"watch": "webpack --watch",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/macnick/RPG-game.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/macnick/RPG-game/issues"
},
"homepage": "https://github.com/macnick/RPG-game#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-core": "^6.26.3",
"babel-jest": "^25.4.0",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^6.8.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.6.3",
"raw-loader": "^4.0.1",
"style-loader": "^1.2.0",
"webpack": "^5.94.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"node-fetch": "^3.1.1",
"phaser": "^3.22.0",
"regenerator-runtime": "^0.13.5"
}
}