-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
96 lines (96 loc) · 3.07 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "nextjs-boilerplate",
"license": "MIT",
"private": "false",
"version": "0.3.0",
"author": "soheil.movahhedan@gmail.com",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "yarn jest",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"commit-check": "yarn type-check && yarn test -o",
"postinstall": "husky install",
"storybook": "start-storybook -s ./public -p 6006",
"storybook:build": "build-storybook -s public",
"cypress:dev": "yarn dev & yarn cypress open",
"cypress:build": "yarn cypress run",
"deploy:test": "yarn build --profile && yarn test",
"deploy:e2e": "yarn start & yarn cypress:build",
"postbuild": "next-sitemap",
"kill": "kill -9 $(lsof -iTCP -sTCP:LISTEN | grep 3000 | awk '{print $2}');"
},
"sideEffects": [
"./public/*",
"./src/pages/*"
],
"dependencies": {
"@emotion/css": "^11.5.0",
"@emotion/react": "^11.5.0",
"next": "^12.0.2",
"next-seo": "^4.28.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"swr": "^1.0.1",
"twin.macro": "^2.8.2"
},
"devDependencies": {
"@axe-core/react": "^4.2.2",
"@babel/core": "^7.14.3",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/jest": "^11.5.0",
"@storybook/addon-a11y": "^6.3.8",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-docs": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.3.8",
"@storybook/theming": "^6.3.8",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/line-clamp": "^0.2.2",
"@tailwindcss/typography": "^0.4.1",
"@testing-library/dom": "^8.2.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/jest-axe": "^3.5.2",
"@types/node": "^16.11.6",
"@types/react": "^17.0.5",
"@types/react-test-renderer": "^17.0.1",
"@types/tailwindcss": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"autoprefixer": "^10.3.3",
"babel-jest": "^27.1.0",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-twin": "^1.0.2",
"cypress": "^8.3.1",
"eslint": "<8.0.0",
"eslint-config-next": "^12.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tailwind": "^0.2.1",
"husky": "^7.0.4",
"jest": "^27.1.0",
"jest-axe": "^5.0.1",
"jest-cli": "^27.1.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^11.0.0",
"next-page-tester": "^0.30.0",
"next-sitemap": "^1.6.179",
"postcss": "^8.3.6",
"prettier": "^2.3.0",
"react-test-renderer": "^17.0.2",
"storybook-addon-next-router": "^3.0.8",
"tailwindcss": "2.1.4",
"ts-jest": "^27.0.5",
"typescript": "~4.4.4"
}
}