-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.88 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.88 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "doom-nukem-css",
"version": "2.0.0",
"private": true,
"homepage": "https://yurkagon.github.io/Doom-Nukem-CSS/",
"repository": "https://github.com/yurkagon/Doom-Nukem-CSS",
"author": "yurkagon <owngameplay@gmail.com>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --open --mode=development",
"build": "webpack --config webpack.config.js --mode=production",
"watch": "webpack --watch",
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"pretty": "prettier --write '**/*.{ts,scss,css,html,json}'"
},
"dependencies": {
"classnames": "^2.2.6",
"image-brightness": "^0.0.10",
"image-filter-brightness": "^1.0.0",
"image-filter-core": "^2.0.2",
"jquery": "^3.5.0",
"lodash": "^4.17.21",
"mobx": "^5.15.1",
"mobx-react": "^6.1.4",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@types/classnames": "^2.2.9",
"@types/jquery": "^3.3.31",
"@types/lodash": "^4.14.166",
"@types/node": "^13.1.1",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.0",
"file-loader": "^6.2.0",
"gh-pages": "^2.1.1",
"husky": "^3.1.0",
"node-sass": "^7.0.0",
"prettier": "1.19.1",
"sass-loader": "^8.0.0",
"style-loader": "^1.1.2",
"ts-loader": "^8.0.12",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.1.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn pretty"
}
},
"keywords": [
"3d",
"shooter",
"fps",
"first person shooter",
"css",
"html",
"jquery",
"javascript",
"doom",
"duke nukem",
"wolfenstein",
"react"
]
}