-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.53 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.53 KB
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
{
"name": "running-bunny",
"version": "1.0.0",
"description": "A platform game made using Phaser 3 and Project Template",
"main": "src/index.js",
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "webpack serve --mode development --open",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anapdh/js-capstoneproject/"
},
"license": "MIT",
"licenseUrl": "https://github.com/anapdh/js-capstoneproject/blob/feature/running-bunny/LICENSE.md",
"bugs": {
"url": "https://github.com/anapdh/js-capstoneproject/issues"
},
"homepage": "https://github.com/anapdh/js-capstoneproject#readme",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.14.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.0.5",
"jest-canvas-mock": "^2.3.1",
"phaser": "^3.3.0",
"raw-loader": "^0.5.1",
"regenerator-runtime": "^0.13.7",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^21.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.19.0",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.6",
"jest-expect-subclass": "^1.0.1",
"style-loader": "^2.0.0"
}
}