-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 943 Bytes
/
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
{
"name": "next-typescript-template",
"version": "1.1.4",
"description": "Next template with typescript.",
"repository": "https://github.com/Lissone/next-typescript-template.git",
"author": "Leonardo Dias Lissone Santomero <leonardo.lissonez@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"prepare": "husky",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "14.2.9",
"react": "18.3.1",
"react-dom": "18.3.1",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@lissone/eslint-config": "^2.2.4",
"@types/node": "^22.5.4",
"@types/react": "18.3.5",
"@types/styled-components": "^5.1.34",
"eslint": "^8.57.0",
"husky": "^9.1.5",
"tsconfig-paths": "^4.2.0",
"typescript": "5.6.2"
}
}