-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·59 lines (59 loc) · 1.6 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
{
"name": "startd-theme",
"description": "A TypeScript/Next.js theme that includes everything you need to build amazing landing page!",
"version": "1.0.0",
"private": true,
"author": "Jaakko Kytölä <[email protected]> (jaakkokytola.com)",
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"typescript",
"tailwind",
"theme"
],
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write"
},
"dependencies": {
"@fontsource/inter": "4.2.1",
"@react-three/drei": "7.6.1",
"@react-three/fiber": "7.0.6",
"@svgr/webpack": "5.5.0",
"@types/tailwindcss": "3.0.10",
"@ukstv/jazzicon-react": "1.0.0",
"eslint": "8.24.0",
"next": "12",
"next-seo": "4.20.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-hotjar": "5.1.0",
"react-typical": "0.1.3",
"react-wavify": "1.5.7",
"tailwindcss": "^3.0.23",
"three": "0.138.3",
"twind": "0.15.4"
},
"devDependencies": {
"@types/node": "14.14.28",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.1",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint-import-resolver-typescript": "2.4.0",
"prettier": "2.2.1",
"typescript": "4.8.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}