-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
79 lines (79 loc) · 1.98 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
{
"name": "nextal",
"private": false,
"description": "Starter template for Next with TypeScript. Supports Tailwind with CSS-Modules. Vitest and @react/testing-library configured and ready to go. Also ESLint, Prettier, Husky, Commit-lint and Atomic Design for components.",
"homepage": "https://github.com/jvidalv/nextal#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jvidalv/nextal.git"
},
"author": "Josep Vidal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jvidalv/nextal/issues"
},
"keywords": [
"react",
"next",
"nextjs",
"typescript",
"vitest",
"tailwind",
"template",
"starter",
"css-modules",
"eslint",
"prettier",
"husky",
"commit-lint"
],
"browserslist": [
">0.2%",
"not dead",
"not IE 11"
],
"engines": {
"node": ">=18.17",
"yarn": ">=1.22.5"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:ci": "vitest",
"postinstall": "husky install",
"ts": "tsc"
},
"dependencies": {
"@heroicons/react": "2.1.1",
"classnames": "2.5.1",
"next": "14.1.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "0.5.10",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "20.11.17",
"@types/react": "18.2.55",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "10.4.17",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"eslint-plugin-testing-library": "6.2.0",
"husky": "8.0.3",
"jsdom": "^24.0.0",
"lint-staged": "15.2.2",
"postcss": "8.4.35",
"prettier": "3.2.5",
"tailwindcss": "3.4.1",
"typescript": "5.3.3",
"vitest": "^1.2.2"
}
}