-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "portfolio-jose-allef",
"version": "2.0.0",
"main": "src/app/page.ts",
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"commit": "cz",
"test": "jest",
"test:watch": "jest --watch",
"test:integration:open": "cypress open",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook"
},
"dependencies": {
"commitizen": "^4.3.0",
"graphql": "^16.8.1",
"graphql-request": "^7.0.1",
"lodash": "^4.17.21",
"next": "^14.2.3",
"nookies": "^2.5.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@storybook/addon-actions": "^8.1.5",
"@storybook/addon-essentials": "^8.1.5",
"@storybook/addon-links": "^8.1.5",
"@storybook/react": "^8.1.5",
"@types/node": "^20.13.0",
"autoprefixer": "^10.4.17",
"cypress": "^13.6.4",
"cz-conventional-changelog": "3.3.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "^28.6.0",
"husky": "^9.0.11",
"postcss": "^8.4.38",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"pre-push": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}