-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.15 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
{
"name": "telbby-frontend",
"version": "0.1.0",
"description": "",
"repository": "https://github.com/w-campers/telbby-frontend",
"license": "MIT",
"private": true,
"scripts": {
"dev": "env-cmd webpack serve --mode development --config ./config/webpack.config.js",
"build": "env-cmd webpack --mode production --progress --config ./config/webpack.config.js",
"lint": "yarn eslint --ext .tsx --ext .ts .",
"lint:fix": "yarn eslint --ext .tsx --ext .ts . --fix",
"prettier:write": "yarn prettier --write .",
"prepare": "husky install",
"precommit": "yarn lint-staged --config ./config/.lintstagedrc.json",
"test": "jest --config ./config/jest.config.js",
"test:watch": "jest --watchAll --config ./config/jest.config.js",
"test:coverage": "jest --coverage --config ./config/jest.config.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@storybook/addon-actions": "~6.3.12",
"@storybook/addon-essentials": "~6.3.12",
"@storybook/addon-links": "~6.3.12",
"@storybook/builder-webpack5": "~6.3.12",
"@storybook/manager-webpack5": "~6.3.12",
"@storybook/react": "~6.3.12",
"@swc/core": "^1.2.115",
"@swc/jest": "^0.2.11",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/axios": "^0.14.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.29",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"chromatic": "^6.2.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"env-cmd": "^10.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-testing-library": "^4.12.4",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.3.4",
"history": "^5.1.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.0",
"jest": "^27.3.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^11.2.3",
"mini-css-extract-plugin": "^2.4.2",
"prettier": "^2.4.1",
"style-loader": "^3.3.0",
"svg-url-loader": "^7.1.1",
"swc-loader": "^0.1.15",
"typescript": "^4.4.4",
"url-loader": "^4.1.1",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@emotion/react": "^11.5.0",
"axios": "^0.24.0",
"core-js": "3",
"nanoid": "^3.1.30",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.27.0",
"react-router-dom": "^5.3.0",
"recoil": "^0.4.1"
}
}