-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"name": "superfunnyracegame",
"version": "1.0.0",
"description": "",
"main": "./main.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run lint; webpack --mode=production --node-env=production",
"build:dev": "npm run lint; webpack --mode=development",
"build:prod": "npm run lint; webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"start": "webpack serve",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikolajszymczuk1/SuperFunnyRaceGame.git"
},
"keywords": [],
"author": "Mikołaj Szymczuk, Adrian Czubaty",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikolajszymczuk1/SuperFunnyRaceGame/issues"
},
"homepage": "https://github.com/mikolajszymczuk1/SuperFunnyRaceGame#readme",
"dependencies": {
"eslint-config-airbnb-typescript": "^17.0.0",
"phaser": "^3.55.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@webpack-cli/generators": "^3.0.1",
"autoprefixer": "^10.4.14",
"css-loader": "^6.7.3",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.3",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}