-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 3.85 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
132
133
134
135
136
137
{
"name": "react-playground",
"version": "1.0.0",
"description": "よりうまい肉を食うぞ",
"license": "MIT",
"author": "",
"homepage": "https://github.com/shoota/react-playground#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/shoota/react-playground.git"
},
"bugs": {
"url": "https://github.com/shoota/react-playground/issues"
},
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"codegen": "graphql-codegen --config codegen.yml",
"lint": "eslint 'src/**/*.ts{,x}' --cache",
"start": "webpack-dev-server",
"test": "tsc -p ./tsconfig.json",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"resolutions": {
"@types/react": "16.14.20",
"@types/react-dom": "16.9.10"
},
"dependencies": {
"@ant-design/icons": "4.7.0",
"@apollo/client": "3.3.21",
"antd": "4.11.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"styled-components": "5.1.0"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/preset-env": "7.14.7",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.14.5",
"@graphql-codegen/add": "2.0.2",
"@graphql-codegen/cli": "1.21.7",
"@graphql-codegen/fragment-matcher": "2.0.1",
"@graphql-codegen/typescript": "1.23.0",
"@graphql-codegen/typescript-operations": "1.18.4",
"@graphql-codegen/typescript-react-apollo": "2.3.1",
"@hot-loader/react-dom": "16.13.0",
"@storybook/addon-actions": "^6.4.5",
"@storybook/addon-essentials": "^6.4.5",
"@storybook/addon-links": "^6.4.5",
"@storybook/react": "^6.4.5",
"@types/clean-webpack-plugin": "0.1.3",
"@types/html-webpack-plugin": "3.2.4",
"@types/jest": "25.2.3",
"@types/mini-css-extract-plugin": "0.9.1",
"@types/react": "16.14.20",
"@types/react-dom": "16.9.10",
"@types/react-router": "5.1.5",
"@types/react-router-dom": "5.1.7",
"@types/react-test-renderer": "16.9.4",
"@types/styled-components": "5.1.0",
"@types/webpack": "4.41.10",
"@types/webpack-dev-server": "3.11.4",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"awesome-typescript-loader": "5.2.1",
"babel-core": "6.26.3",
"babel-loader": "8.2.2",
"babel-plugin-react-remove-properties": "0.3.0",
"babel-runtime": "6.26.0",
"clean-webpack-plugin": "3.0.0",
"css-loader": "3.6.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "4.2.0",
"graphql": "15.5.1",
"graphql-codegen-typescript-mock-data": "1.5.7",
"html-loader": "1.1.0",
"html-webpack-plugin": "4.5.0",
"husky": "4.2.5",
"jest": "25.5.4",
"less": "3.11.1",
"less-loader": "5.0.0",
"lint-staged": "10.5.4",
"mini-css-extract-plugin": "0.9.0",
"prettier": "2.2.1",
"react-test-renderer": "17.0.2",
"style-loader": "1.3.0",
"ts-jest": "25.5.1",
"ts-node": "8.10.2",
"typescript": "3.8.3",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/test/**.test.ts?(x)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testURL": "http://localhost"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
}