This repository was archived by the owner on Aug 16, 2022. It is now read-only.
forked from KushibikiMashu/nextjs-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
{
"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": {
"@testing-library/react": "^13.3.0",
"@types/react": "^18.0.17",
"next": "^12.2.4",
"react": "^18.2.0",
"react-countdown-circle-timer": "^3.0.9"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-private-property-in-object": "^7.14.5",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.2.9",
"@storybook/react": "6.5.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/node": "16.11.47",
"@types/react": "^18.0.17",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"autoprefixer": "^10.2.6",
"babel-jest": "28.1.3",
"concurrently": "7.3.0",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-watch-typeahead": "2.0.0",
"lint-staged": "13.0.3",
"postcss": "^8.3.0",
"prettier": "^2.2.1",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"tailwindcss": "3.1.8",
"typescript": "^4.3.2"
},
"license": "MIT"
}