-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "boxworld",
"version": "1.0.0",
"description": "Really basic DOM-based game engine for 2.5D games",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js",
"start": "webpack-dev-server --config webpack.prod.js",
"build": "webpack --config webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Bård N. Hovde",
"license": "ISC",
"devDependencies": {
"@types/howler": "^2.2.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.5.1",
"cssnano": "^5.0.11",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.4",
"postcss": "^8.3.11",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.2.0",
"postcss-preset-env": "^7.0.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"dependencies": {
"howler": "^2.2.3"
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bnhovde/boxworld.js.git"
},
"bugs": {
"url": "https://github.com/bnhovde/boxworld.js/issues"
},
"homepage": "https://github.com/bnhovde/boxworld.js#readme"
}