forked from KushibikiMashu/nextjs-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.13 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
{
"name": "next-starter-kit",
"version": "3.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest --env=jsdom",
"fix": "prettier --write './**/*.{js,jsx,ts,tsx}'",
"lint": "next lint . --cache",
"lint:fix": "next lint . --cache --fix",
"storybook": "start-storybook -p 6006 --quiet",
"build-storybook": "build-storybook",
"tsc": "tsc",
"prepare": "husky install",
"ci": "concurrently 'yarn lint' 'yarn tsc' 'yarn test'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"next lint . --cache --fix",
"prettier --write"
]
},
"dependencies": {
"@apollo/client": "3.8.10",
"@testing-library/react": "14.1.2",
"@types/react": "18.2.48",
"next": "12.3.4",
"react": "18.2.0",
"react-countdown-circle-timer": "3.2.1"
},
"devDependencies": {
"@babel/core": "7.23.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@storybook/addon-essentials": "7.6.10",
"@storybook/addon-postcss": "2.0.0",
"@storybook/builder-webpack5": "7.6.10",
"@storybook/react": "7.6.10",
"@testing-library/jest-dom": "6.3.0",
"@testing-library/react": "14.1.2",
"@types/node": "20.11.6",
"@types/react": "18.2.48",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"autoprefixer": "10.4.17",
"babel-jest": "29.7.0",
"concurrently": "8.2.2",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "9.0.1",
"jest": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"lint-staged": "15.2.0",
"postcss": "8.4.33",
"prettier": "3.2.4",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"tailwindcss": "3.4.1",
"typescript": "5.3.3"
},
"license": "MIT"
}