-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "nextjs-tailwind-template",
"version": "1.0.0",
"description": "NextJS + TailwindCSS Template with PurgeCSS",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"keywords": [],
"author": {
"email": "[email protected]",
"name": "Muhammad Muhajir",
"url": "https://muhajir.dev"
},
"license": "ISC",
"dependencies": {
"cross-env": "^5.2.0",
"cssnano": "^4.1.10",
"next": "^9.0.1",
"postcss-preset-env": "^6.7.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-use": "^12.8.0",
"styled-jsx-plugin-postcss": "^2.0.1",
"swr": "0.3.11",
"urlcat": "2.0.4"
},
"devDependencies": {
"@types/node": "^12.6.2",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@zeit/next-css": "^1.0.1",
"next-purgecss": "^3.1.1",
"tailwindcss": "^1.0.5",
"typescript": "^3.5.3"
}
}