This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 4.08 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
{
"name": "react-typescript-template",
"version": "0.1.0",
"description": "React TypeScript Boiler with Storybook & Styled Components and Webpack 5",
"keywords": [
"React",
"TypeScript",
"Webpack 5",
"Starter Template",
"react-boilerplate",
"react-boilerplate-template",
"typescript",
"styled-components"
],
"license": "ISC",
"author": "Tushar Mistry",
"main": "src/index.tsx",
"scripts": {
"start": "cross-env APP_ENV=local NODE_ENV=development webpack serve --config webpack.config.ts --env env=development",
"build": "cross-env APP_ENV=production NODE_ENV=production webpack --config webpack.config.ts --env env=production",
"analyze": "cross-env APP_ENV=production NODE_ENV=production webpack --config webpack.config.ts --env env=prod --analyze",
"lint": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx,scss,css,json}\"",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,scss,css,json,md}\"",
"test": "jest -c jest.config.ts",
"coverage": "jest -c jest.config.ts --coverage --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy": "netlify deploy --dir=./build -p -m \"$(git log -1 --pretty=%B)\"",
"upgrade:package": "npx npm-check-updates -u && yarn",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,scss,css}": "yarn lint"
},
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.14.2",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.14.0",
"@svgr/webpack": "^6.2.1",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "2.0.6",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"dotenv-webpack": "^7.0.2",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^2.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.0",
"terser-webpack-plugin": "^5.2.4",
"typescript": "^4.2.4",
"webpack": "^5.52.1",
"webpack-cli": "^4.7.0"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/builder-webpack5": "^6.3.8",
"@storybook/components": "6.4.19",
"@storybook/manager-webpack5": "^6.3.8",
"@storybook/react": "^6.3.8",
"@storybook/theming": "^6.3.8",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^12.0.0",
"@types/copy-webpack-plugin": "^10.1.0",
"@types/dotenv-webpack": "^7.0.3",
"@types/html-webpack-plugin": "^3.2.6",
"@types/jest": "^27.0.1",
"@types/mini-css-extract-plugin": "^2.2.0",
"@types/node": "^17.0.21",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.5",
"@types/styled-components": "^5.1.14",
"@types/testing-library__jest-dom": "^5.14.1",
"@types/webpack-dev-server": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.1",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sonarjs": "0.12.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"husky": "^7.0.2",
"jest": "^27.1.1",
"lint-staged": "^12.3.4",
"netlify-cli": "^9.9.0",
"prettier": "^2.4.0",
"react-refresh": "^0.11.0",
"style-loader": "^3.2.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-dev-server": "^4.2.0"
},
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 edge version",
"last 1 safari version"
],
"production": [
"supports es6-module"
]
}
}