-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 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
{
"name": "third-person-controller",
"version": "0.1.0",
"main": "src/game.ts",
"author": "Philipp Boensch <philippboensch@gmail.com",
"license": "MIT",
"private": false,
"devDependencies": {
"@swc/core": "^1.2.95",
"@types/webpack-merge": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"fork-ts-checker-webpack-plugin": "^6.3.4",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"lint-staged": "^11.2.1",
"prettier": "^2.4.1",
"source-map-loader": "^3.0.0",
"swc-loader": "^0.1.15",
"typescript": "^4.4.3",
"webpack": "^5.58.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0",
"yarn-upgrade-all": "^0.5.4"
},
"scripts": {
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix . && tsc --noEmit",
"build": "webpack -p --config=configs/webpack/prod.js",
"start": "webpack-dev-server --config=configs/webpack/dev.js"
},
"husky": {
"hooks": {
"pre-commit": "tsc --NoEmit && lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"dependencies": {
"@types/three": "^0.133.1",
"three": "^0.133.1",
"tsyringe": "^4.6.0"
}
}