-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "brick-game",
"version": "1.0.0",
"description": "brick game 9999 in 1",
"private": true,
"sideEffects": [
"*.css",
"*.scss"
],
"scripts": {
"start": "webpack serve --open",
"build-prod": "webpack --env mode='production' --progress",
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"clear-dist": "rm -rf ./dist",
"prettier-format": "prettier --config .prettierrc . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0ashen/brick-game.git"
},
"keywords": [
"brick",
"game"
],
"author": "Philipp Ius",
"license": "ISC",
"bugs": {
"url": "https://github.com/0ashen/brick-game/issues"
},
"homepage": "https://github.com/0ashen/brick-game#readme",
"devDependencies": {
"@types/html-webpack-plugin": "^3.2.6",
"@types/lodash": "^4.14.174",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^4.1.0",
"css-loader": "^6.3.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^28.1.0",
"node-sass": "^6.0.1",
"prettier": "^2.4.1",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"style-loader": "^3.3.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.54.0",
"webpack-cli": "^4.8.0",
"webpack-dev-middleware": "^5.2.1",
"webpack-dev-server": "^4.3.0"
},
"dependencies": {
"clsx": "^1.1.1",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0"
}
}