-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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
{
"name": "@accelist/nextjs-starter",
"version": "0.1.0",
"description": "Next.js project starter template for PT. Accelist Lentera Indonesia",
"author": "Ryan Elian",
"homepage": "https://github.com/accelist/nextjs-starter#readme",
"bugs": "https://github.com/accelist/nextjs-starter/issues",
"license": "Apache-2.0",
"main": "index.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:nextjs": "next dev",
"typescript": "tsc -w --pretty --preserveWatchOutput",
"eslint": "esw -w --ext .js,.jsx,.ts,.tsx",
"dev": "concurrently \"npm:prepare\" \"npm:typescript\" \"npm:eslint\" \"npm:dev:nextjs\"",
"build": "next build",
"start": "next start -p 80",
"debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"prepare": "husky install",
"pre-commit-check": "tsc && next lint"
},
"devDependencies": {
"@types/http-proxy": "^1.17.10",
"@types/node": "^18.15.11",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.33",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"autoprefixer": "10.4.14",
"concurrently": "8.0.1",
"cross-env": "7.0.3",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"eslint-watch": "8.0.0",
"husky": "8.0.3",
"postcss": "8.4.21",
"tailwindcss": "3.3.1",
"typescript": "5.0.4"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.4.0",
"@fortawesome/free-solid-svg-icons": "6.4.0",
"@fortawesome/react-fontawesome": "0.2.0",
"@hookform/error-message": "2.0.1",
"@hookform/resolvers": "3.0.1",
"antd": "^5.4.0",
"dayjs": "1.11.7",
"http-proxy": "1.18.1",
"jotai": "2.0.3",
"next": "13.3.0",
"next-auth": "4.22.0",
"nprogress": "0.2.0",
"openid-client": "5.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.9",
"swr": "2.1.2",
"zod": "3.21.4"
}
}