-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.39 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
{
"name": "gatsby-typescript-testing",
"version": "1.0.0",
"private": true,
"description": "A project with React GatsbyJS and TypeScript with Testing using Atomic Design",
"author": "Developers Funny",
"keywords": [
"gatsby",
"react",
"jest",
"testing",
"test",
"storybook",
"github pages",
"typescript",
"tailwind",
"tailwindcss",
"tailwind-css"
],
"scripts": {
"start": "gatsby develop",
"develop:type-check": "tsc --watch",
"develop": "npm-run-all --parallel start develop:type-check",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve",
"clean": "gatsby clean",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest",
"test:coverage": "jest --watchAll --coverage",
"prepare": "husky install"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"gatsby": "4.6.2",
"gatsby-plugin-emotion": "^7.6.0",
"gatsby-plugin-image": "2.6.0",
"gatsby-plugin-manifest": "4.6.0",
"gatsby-plugin-react-helmet": "5.6.0",
"gatsby-plugin-sharp": "4.6.0",
"gatsby-plugin-typescript": "4.6.0",
"gatsby-source-filesystem": "4.6.0",
"gatsby-transformer-sharp": "4.6.0",
"npm-run-all": "4.1.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"typescript": "4.5.5"
},
"devDependencies": {
"@emotion/jest": "^11.7.1",
"@storybook/addon-a11y": "6.4.18",
"@storybook/addon-actions": "6.4.18",
"@storybook/addon-essentials": "6.4.18",
"@storybook/addon-interactions": "^6.4.18",
"@storybook/addon-links": "6.4.18",
"@storybook/addon-postcss": "2.0.0",
"@storybook/addon-storyshots": "^6.4.18",
"@storybook/addon-storyshots-puppeteer": "^6.4.18",
"@storybook/builder-webpack5": "6.4.18",
"@storybook/jest": "^0.0.6",
"@storybook/manager-webpack5": "6.4.18",
"@storybook/react": "6.4.18",
"@storybook/testing-library": "^0.0.9",
"@storybook/testing-react": "^1.2.3",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.4.0",
"@types/node": "17.0.15",
"@types/puppeteer": "5.4.4",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/react-helmet": "6.1.5",
"@types/react-test-renderer": "17.0.1",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"autoprefixer": "10.4.2",
"babel-jest": "27.5.0",
"eslint": "^8.8.0",
"eslint-config-react-app": "^7.0.0",
"eslint-webpack-plugin": "^3.1.1",
"gatsby-plugin-eslint": "^4.0.2",
"gatsby-plugin-postcss": "5.6.0",
"husky": "^7.0.4",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.0",
"jest-puppeteer": "6.1.0",
"lint-staged": "^12.3.3",
"postcss": "8.4.6",
"postcss-import": "14.0.2",
"prettier": "2.5.1",
"prettier-plugin-tailwindcss": "^0.1.5",
"puppeteer": "3.3.0",
"react-test-renderer": "17.0.2",
"tailwindcss": "3.0.18",
"twin.macro": "^2.8.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0"
],
"*.{js,jsx,ts,tsx,css,md}": [
"prettier --write"
],
"*.{ts,tsx}": [
"jest --watchAll=false --findRelatedTests --bail"
]
}
}