-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.62 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "todo-web-app",
"description": "a functional and beautiful todo list",
"author": "Shamsudheen K C <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"version": "0.1.0",
"private": true,
"scripts": {
"check-types": "tsc --noemit",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx",
"next-lint": "next lint . --ext .js,.jsx,.ts,.tsx",
"lint": "yarn eslint && yarn check-types",
"format": "prettier --check \"src/**/*.ts\"",
"postinstall": "husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"bump-version": "npm version --no-git-tag-version",
"get-next-version": "ts-node -P tsconfig.scripts.json ./.standard-version/commands/ComputeNextVersion.ts",
"release-branch": "git flow release start $(ts-node -P tsconfig.scripts.json ./.standard-version/commands/ComputeNextVersion.ts)",
"release": "standard-version"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"standard-version": {
"skip": {
"tag": true
},
"scripts": {
"postcommit": "ts-node -P tsconfig.scripts.json ./.standard-version/commands/FixGitFlowReleaseBranchName.ts"
}
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@types/node": "20.5.6",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"axios": "^1.4.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "8.48.0",
"eslint-config-next": "latest",
"framer-motion": "^11.11.10",
"lucide-react": "^0.468.0",
"next": "latest",
"react": "latest",
"react-dom": "latest",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.1.6",
"uuid": "^11.0.3",
"vaul": "^1.1.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/conventional-recommended-bump": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"autoprefixer": "^10.4.20",
"conventional-recommended-bump": "^7.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.47",
"prettier": "^3.0.2",
"semver": "^7.5.4",
"simple-git": "^3.19.1",
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.1"
},
"volta": {
"node": "18.18.0",
"yarn": "3.6.3"
}
}