-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "wolfenscript3d",
"version": "1.0.0",
"description": "Wolfenstein 3D port written in TypeScript",
"main": "index.js",
"scripts": {
"start": "webpack && webpack serve",
"serve": "webpack && webpack serve --open",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack"
},
"author": "Iwo Strzeboński",
"license": "WTFPL",
"dependencies": {
"@types/webpack-env": "^1.18.0",
"css-loader": "^6.7.3",
"style-loader": "^3.3.1",
"webpack-dev-server": "^4.11.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"url-loader": "^4.1.1",
"webpack": "^5.55.1",
"webpack-cli": "^4.8.0",
"yaml-loader": "^0.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iwo-strzebonski/WolfenScript3D.git"
},
"bugs": {
"url": "https://github.com/iwo-strzebonski/WolfenScript3D/issues"
},
"homepage": "https://github.com/iwo-strzebonski/WolfenScript3D#readme"
}