generated from rukeni/next-tailwind-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.24 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.24 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "next-tailwind-template",
"private": true,
"scripts": {
"analyze": "ANALYZE=true yarn build",
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"fix": "pretty-quick --staged",
"start": "next start",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:duplicate": "jscpd --pattern \"src/**/*\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"sideEffects": false,
"resolutions": {
"@types/node": "^16.0.0",
"postcss": "^8.0.0",
"webpack": "^5"
},
"dependencies": {
"@next/bundle-analyzer": "^12.1.6",
"clsx": "^1.1.1",
"next": "^12.1.6",
"next-seo": "^5.4.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@jest/types": "^28.1.1",
"@next/eslint-plugin-next": "^12.1.6",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/addon-postcss": "^3.0.0-alpha.1",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@testing-library/cypress": "^8.0.3",
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^28.1.1",
"@types/node": "^16.0.0",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/testing-library__jest-dom": "^5.14.3",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-loader": "^8.2.5",
"cypress": "^10.6.0",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-storybook": "^0.6.1",
"eslint-plugin-tailwindcss": "^3.5.2",
"eslint-plugin-testing-library": "^5.5.1",
"eslint-plugin-trim": "^0.3.1",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"husky": "^8.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-plugin-context": "^2.9.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.7.1",
"prettier": "^2.7.0",
"start-server-and-test": "^1.14.0",
"storybook-css-modules-preset": "^1.1.1",
"tailwindcss": "^3.1.2",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.7.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write"
]
}
}