-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.5 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
54
55
56
57
58
{
"name": "city-builder",
"version": "1.0.0",
"description": "simple city buider game using THREE.js",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "vite",
"build": "vite build",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelKowal/city-builder.git"
},
"keywords": [
"THREE.js",
"city-builder"
],
"author": "Michael Kowal",
"license": "ISC",
"bugs": {
"url": "https://github.com/MichaelKowal/city-builder/issues"
},
"homepage": "https://github.com/MichaelKowal/city-builder#readme",
"dependencies": {
"i18next": "^23.7.3",
"lodash.throttle": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.4.0",
"react-icons": "^4.11.0",
"three": "^0.158.0"
},
"devDependencies": {
"@types/lodash.throttle": "^4.1.9",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/three": "^0.158.2",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.1.1",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-eslint": "^1.8.1"
},
"type": "module",
"packageManager": "[email protected]",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}