-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "next-ui",
"version": "0.0.1",
"description": "Next.js template with Typescript, TailwindCSS, and Vercel.",
"author": "Monogram",
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/monogramdesign/next-ui.git"
},
"bugs": {
"url": "https://github.com/monogramdesign/next-ui/issues"
},
"contributors": [
{
"name": "Liam Davis",
"email": "[email protected]"
}
],
"main": "pages/index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"export": "cross-env IS_EXPORT=true yarn build && cross-env IS_EXPORT=true next export",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"isomorphic-dompurify": "^0.18.0",
"next": "12.0.10",
"next-seo": "^5.1.0",
"preact": "10.6.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"three": "^0.138.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.1",
"@types/node": "^17.0.16",
"@types/react": "^17.0.39",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"next-sitemap": "^2.1.13",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"sass": "^1.49.7",
"tailwindcss": "^3.0.19",
"typescript": "^4.5.5"
}
}