-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "projeto-naiara",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"gen": "plop --plopfile generators/plopfile.js",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"prepare": {
"husky": {
"hooks": {
"pre-commit": "pnpm lint && pnpm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
},
"dependencies": {
"@stitches/react": "^1.2.8",
"@vercel/analytics": "^1.0.1",
"framer-motion": "^10.12.17",
"keen-slider": "^6.8.5",
"next": "^13.4.7",
"nextjs-google-analytics": "^2.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-loader-spinner": "^5.3.4",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@rocketseat/eslint-config": "^1.2.0",
"@testing-library/react": "^14.0.0",
"@types/node": "20.3.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-c8": "^0.32.2",
"eslint": "8.43.0",
"eslint-config-next": "^13.4.7",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"plop": "^3.1.2",
"typescript": "^5.1.0",
"vitest": "^0.32.2"
}
}