-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.15 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.15 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
{
"name": "wasm_gold_rush",
"version": "1.0.0",
"description": "wasm gold rush game",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier-format": "prettier --config .prettierrc 'ts/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"build": "rimraf dist pkg && webpack",
"start": "rimraf dist pkg && webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imbenrabi/wasm_gold_rush.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/imbenrabi/wasm_gold_rush/issues"
},
"homepage": "https://github.com/imbenrabi/wasm_gold_rush#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.5.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}