-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.11 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": "react-boilerplate",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/wonsss/react-boilerplate.git",
"author": "wonsss <[email protected]>",
"license": "MIT",
"scripts": {
"typecheck": "tsc --build && tsc --build --clean",
"start:prod": "webpack serve --config webpack/webpack.prod.js",
"start:dev": "webpack serve --config webpack/webpack.dev.js",
"build:prod": "webpack --config webpack/webpack.prod.js",
"build:dev": "webpack --config webpack/webpack.dev.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"pretty": "prettier --write \"src/**/*.{ts,tsx,json}\"",
"test": "jest --watchAll",
"test-ci": "jest -ci --coverage --coverageReporters json-summary"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@tanstack/react-query": "^4.20.4",
"axios": "^1.2.1",
"emotion-normalize": "^11.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.5",
"recoil": "^0.7.6"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/babel-plugin": "^11.10.5",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/builder-webpack4": "^6.5.14",
"@storybook/manager-webpack4": "^6.5.14",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-storybook": "^0.6.8",
"fork-ts-checker-webpack-plugin": "^7.2.14",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-junit": "^15.0.0",
"jest-transformer-svg": "^2.0.0",
"msw": "^0.49.2",
"prettier": "^2.8.1",
"progress-webpack-plugin": "^1.0.16",
"postcss": "^8.4.32",
"postcss-styled-syntax": "^0.5.0",
"speed-measure-webpack-plugin": "^1.5.0",
"stylelint": "15.11.0",
"stylelint-config-clean-order": "^5.0.1",
"stylelint-config-standard": "^34.0.0",
"stylelint-no-unsupported-browser-features": "7.0.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": ">=16",
"npm": "please-use-yarn"
}
}