-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 835 Bytes
/
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
{
"name": "nextjs-tw-boilerplate",
"version": "0.1.0",
"scripts": {
"next:dev": "next dev",
"tw:dev": "npx tailwindcss -i ./src/styles/tw.css -o ./src/styles/globals.css --watch",
"dev": "run-p tw:dev next:dev",
"build": "npx tailwindcss -i ./src/styles/tw.css -o ./src/styles/globals.css --minify && next build",
"fmt": "npx prettier --write src",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "13.2.4",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "18.15.11",
"@types/nprogress": "^0.2.0",
"@types/react": "18.0.33",
"@types/react-dom": "18.0.11",
"eslint": "8.37.0",
"eslint-config-next": "13.2.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"typescript": "5.0.3"
}
}