forked from Modtoberfest/Modtoberfest-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "next-starter-tailwind",
"version": "1.1.0",
"description": "Next.js starter styled with Tailwind CSS",
"main": "index.js",
"scripts": {
"analyze:tailwind-css-class-order": "rustywind --dry-run .",
"analyze": "npm run analyze:tailwind-css-class-order",
"fix:tailwind-css-class-order": "rustywind --write .",
"fix": "npm run fix:tailwind-css-class-order",
"dev": "next",
"build": "next build",
"export": "npm run build && next export",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taylorbryant/next-starter-tailwind.git"
},
"author": "Taylor Bryant",
"license": "MIT",
"bugs": {
"url": "https://github.com/taylorbryant/next-starter-tailwind/issues"
},
"homepage": "https://github.com/taylorbryant/next-starter-tailwind#readme",
"dependencies": {
"classnames": "^2.2.6",
"knex": "^0.21.5",
"next": "9.5.2",
"next-auth": "^3.1.0",
"next-seo": "^4.7.3",
"node-fetch": "^2.6.1",
"pg": "^8.3.3",
"pg-hstore": "^2.3.3",
"react": "16.13.1",
"react-countdown": "^2.2.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"autoprefixer": "9.8.6",
"rustywind": "0.6.6",
"tailwindcss": "1.7.6",
"typescript": "^4.0.2"
}
}