generated from perryraskin/nextjs-tailwind-shopify-storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "nextjs-tailwindcss-starter",
"description": "A super simple boilerplate for your Next.js web app",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Perry Raskin",
"email": "[email protected]",
"url": "https://github.com/perryraskin"
},
"main": "index.tsx",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --fix ."
},
"bugs": {
"url": "https://github.com/perryraskin/nextjs-tailwindcss-starter/issues"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^4.0.3",
"@hapi/iron": "^6.0.0",
"@headlessui/react": "^1.4.1",
"@heroicons/react": "^1.0.4",
"@magic-ext/oauth": "^2.1.0",
"@magic-sdk/admin": "^1.3.4",
"@prisma/client": "^3.11.0",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.4.4",
"dayjs": "^1.11.0",
"dotenv": "^10.0.0",
"dotenv-webpack": "^7.0.3",
"express": "^4.17.1",
"magic-sdk": "^8.1.0",
"next": "^12.1.0",
"postcss": "^8.4.12",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"@types/next": "^9.0.0",
"@types/node": "^17.0.22",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"eslint-config-prettier": "^8.3.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"prisma": "^3.11.0",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"prettier": {
"semi": false
}
}