-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.62 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": "js-capstone-rpg",
"version": "1.0.0",
"description": "JS Capstone built with Phaser",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack/prod.js ",
"start": "webpack-dev-server --config webpack/base.js --open",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rammazzoti2000/js_capstone_rpg.git"
},
"author": "Alexandru Bangau",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/rammazzoti2000/js_capstone_rpg/issues"
},
"homepage": "https://github.com/rammazzoti2000/js_capstone_rpg/blob/master/README.md",
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"babel-jest": "^26.2.2",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"file-loader": "^4.3.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.2.2",
"json-loader": "^0.5.7",
"json5-loader": "^4.0.0",
"raw-loader": "^3.1.0",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.8.0",
"stylelint-scss": "^3.17.2",
"terser-webpack-plugin": "^2.3.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/runtime": "^7.10.5",
"phaser": "^3.24.1",
"regenerator-runtime": "^0.13.7",
"uuid": "^8.3.0"
}
}