-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "platform-game",
"version": "1.0.0",
"description": "Microverse JavaScript Capstone Project",
"private": true,
"scripts": {
"test": "jest",
"start:dev": "webpack-dev-server",
"start": "node server.js",
"watch": "webpack --watch",
"lint": "eslint"
},
"engines": {
"node": "12.17.0",
"npm": "6.14.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arslanbisharat/platform_game.git"
},
"author": "Arslan Bisharat",
"license": "MIT",
"bugs": {
"url": "https://github.com/arslanbisharat/platform_game/issues"
},
"homepage": "https://github.com/arslanbisharat/platform_game#readme",
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(s?css|less)$": "identity-obj-proxy"
}
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.1",
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-brands-svg-icons": "^5.13.1",
"@fortawesome/free-regular-svg-icons": "^5.13.1",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"bundle": "^2.1.0",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"phaser": "^3.23.0",
"url-loader": "^4.1.0"
}
}