generated from danangekal/next-typescript-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.76 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
61
62
63
64
65
66
67
{
"name": "startup-uh",
"version": "0.1.0",
"description": "Unofficial Startup Unhas Application",
"author": "#BuildAppWithMin <github.com/buildappwithmin>",
"homepage": "https://github.com/buildappwithmin/startup-uh#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/buildappwithmin/startup-uh.git"
},
"bugs": {
"url": "https://github.com/buildappwithmin/startup-uh/issues"
},
"license": "MIT",
"keywords": [
"nextjs",
"reactjs",
"typescript",
"tailwindcss",
"pwa",
"docker",
"eslint",
"prettier",
"husky",
"lint-staged"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"telemetry": "next telemetry",
"lint": "next lint",
"format": "prettier --ignore-path .gitignore \"**/*.+(js|ts|tsx|css|scss|json|md|html)\" --write",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"test": "echo \"Write tests!\" && exit 0",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@clerk/nextjs": "^5.4.1",
"@clerk/themes": "^2.1.27",
"autoprefixer": "latest",
"daisyui": "latest",
"iconsax-react": "latest",
"next": "latest",
"next-pwa": "latest",
"nextjs-progressbar": "latest",
"postcss": "latest",
"react": "latest",
"react-dom": "latest",
"react-icons": "latest",
"tailwindcss": "latest"
},
"devDependencies": {
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-config-prettier": "latest",
"lint-staged": "latest",
"pinst": "latest",
"prettier": "latest",
"typescript": "latest"
}
}