-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.72 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": "next-starter",
"version": "0.1.7",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:check": "eslint \"app/**/*.{js,jsx,ts,tsx,css,md,json}\"",
"lint:format": "prettier --write \"app/**/*.{js,jsx,ts,tsx,css,md,json}\" --config ./.prettierrc",
"version:patch": "yarn version --patch && yarn config set version-git-message \"chore(version): %s\"",
"version:minor": "yarn version --minor && yarn config set version-git-message \"chore(version): %s\"",
"version:major": "yarn version --major && yarn config set version-git-message \"chore(version): %s\"",
"test": "jest --verbose --coverage",
"test:update": "jest --verbose --coverage --updateSnapshot",
"test:watch": "jest --verbose --watch",
"test:coverage": "jest --verbose --coverage && open ./coverage/lcov-report/index.html",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.5.1",
"lodash.omit": "^4.5.0",
"next": "^13.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.32.6",
"zustand": "^4.4.3"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@storybook/addon-actions": "^6.5.7",
"@storybook/addon-essentials": "^6.5.7",
"@storybook/addon-interactions": "^6.5.7",
"@storybook/addon-links": "^6.5.7",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.7",
"@storybook/manager-webpack5": "^6.5.7",
"@storybook/react": "^6.5.7",
"@storybook/testing-library": "^0.0.11",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.2.1",
"@types/lodash.omit": "^4.5.7",
"@types/node": "17.0.41",
"@types/react": "^18.2.28",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.2.1",
"babel-loader": "^8.2.5",
"eslint": "8.36.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.5.12",
"husky": "^8.0.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^14.0.1",
"postcss": "^8.4.21",
"prettier": "^3.0.3",
"sass": "^1.60.0",
"tailwindcss": "^3.2.7",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint:format",
"yarn lint:check"
]
}
}