-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
53 lines (53 loc) · 1.49 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
{
"name": "@gadingnst/fullstack-next-template",
"version": "0.1.0",
"private": false,
"author": "Sutan Gading Fadhillah Nasution <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/gadingnst/fullstack-next-template.git"
},
"bugs": {
"url": "https://github.com/gadingnst/fullstack-next-template/issues"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky",
"lint": "tsc --noEmit && eslint src --ignore-pattern 'src/public' --max-warnings 0",
"lint:fix": "tsc --noEmit && eslint src --ignore-pattern 'src/public' --fix"
},
"dependencies": {
"mongodb": "^6.12.0",
"next": "15.1.0",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.17.0",
"@svgr/webpack": "8.1.0",
"@types/node": "22.10.2",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"eslint": "9.17.0",
"eslint-config-next": "15.1.0",
"husky": "^9.1.7",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"typescript-eslint": "8.18.0",
"typescript-plugin-css-modules": "^5.1.0"
}
}