generated from nirnejak/nextjs-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 1.89 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
68
69
70
71
72
{
"name": "react-presentation",
"description": "Next.js TypeScript Starter",
"version": "1.0.0",
"author": "Jitendra Nirnejak <jeetnirnejak@gmail.com>",
"scripts": {
"dev": "next dev --turbopack -p 4000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"type-check": "tsc --pretty --noEmit"
},
"dependencies": {
"akar-icons": "^1.9.31",
"dotenv": "^16.4.7",
"motion": "^12.0.6",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sharp": "^0.33.5",
"shiki": "^2.2.0",
"use-sound": "^4.0.3"
},
"devDependencies": {
"@types/node": "^22.12.0",
"@types/react": "^19.0.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.6",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-tailwindcss": "^3.18.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"volta": {
"node": "22.11.0"
},
"keywords": [
"nextjs",
"react",
"typescript",
"eslint",
"prettier",
"precommit"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nirnejak/react-presentation"
},
"bugs": {
"url": "https://github.com/nirnejak/react-presentation/issues"
}
}