-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
59
60
61
62
{
"name": "site",
"description": "The main site of fungiverse",
"version": "1.0.0",
"private": true,
"author": "Tim Pietrusky (@NERDDISCO)",
"license": "AGPL-3.0",
"keywords": [
"nextjs",
"typescript",
"fungi"
],
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@react-three/drei": "9.56.4",
"@react-three/fiber": "8.10.1",
"@types/three": "0.148.1",
"gray-matter": "4.0.3",
"leva": "0.9.34",
"next": "13.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"remark": "14.0.2",
"remark-html": "15.0.1",
"simplex-noise": "4.0.1",
"three": "0.148.0"
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@types/node": "18.11.17",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"eslint": "8.30.0",
"eslint-config-next": "13.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.2",
"lint-staged": "13.1.0",
"prettier": "2.8.1",
"typescript": "4.9.4"
}
}