-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.79 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "personal-blog-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"lint": "eslint --ext .ts,.tsx",
"lint:cypress": "tsc --project cypress/tsconfig.json",
"test": "jest",
"chromatic": "chromatic --exit-zero-on-changes",
"export": "next export"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint"
}
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@fontsource/inter": "^4.2.1",
"@fontsource/parisienne": "^4.2.2",
"@testing-library/react-hooks": "^5.1.0",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"next": "12.0.4",
"raw-loader": "^4.0.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-markdown": "6.0.0",
"react-query": "^3.13.4",
"react-syntax-highlighter": "^15.4.5",
"rehype-raw": "^6.1.1"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.16.7",
"@babel/runtime-corejs3": "^7.13.10",
"@cypress/code-coverage": "^3.9.4",
"@storybook/addon-actions": "^6.4.10",
"@storybook/addon-essentials": "^6.4.10",
"@storybook/addon-links": "^6.4.10",
"@storybook/addon-storyshots": "^6.4.10",
"@storybook/builder-webpack5": "^6.4.10",
"@storybook/manager-webpack5": "^6.4.10",
"@storybook/react": "^6.4.10",
"@tailwindcss/postcss7-compat": "^2.0.3",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/chai": "^4.2.15",
"@types/jest": "^26.0.20",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.31",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"autoprefixer": "^9.8.6",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.3",
"babel-plugin-istanbul": "^6.0.0",
"chromatic": "^5.6.3",
"core-js": "^3.9.1",
"cypress": "^6.8.0",
"cypress-expect": "^2.2.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-storybook": "^0.5.5",
"husky": "^5.1.2",
"identity-obj-proxy": "^3.0.0",
"install": "^0.13.0",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"msw": "^0.36.3",
"msw-storybook-addon": "^1.5.0",
"postcss": "^7.0.35",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"storybook": "^6.4.9",
"storybook-addon-markdown-docs": "^1.0.2",
"storybook-addon-next-router": "^3.1.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.3",
"ts-jest": "^26.5.2",
"typescript": "^4.1.5"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"<rootDir>/cypress/"
],
"setupFiles": [
"<rootDir>/test-setup.ts"
],
"moduleNameMapper": {
".+\\.(css|less|scss|sass)$": "identity-obj-proxy"
},
"preset": "ts-jest",
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.js?$": "babel-jest",
"^.+\\.tsx?$": "babel-jest",
"^.+\\.ts?$": "ts-jest",
"^.+\\.mdx?$": "@storybook/addon-docs/jest-transform-mdx"
},
"transformIgnorePatterns": [
"node_modules/?!(rehype-raw)/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/node_modules/**",
"!**/pages-Stories/**",
"!**/Stories/**",
"!**/mocks/**",
"!**/coverage/**",
"!jest.config.js",
"!**/generateSitemap/processWrapper.tsx",
"!**/pages/_app.tsx",
"!**/pages/**"
]
},
"msw": {
"workerDirectory": "public"
}
}