generated from hhimanshu/create-react-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.49 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
{
"name": "create-react-ts-starter",
"version": "1.0.0",
"description": "A React Starter from scratch using TypeScript, Webpack, Jest, React Testing Library, Storybook, Prettier, ESLint, and GitHub Actions.",
"private": true,
"scripts": {
"test": "jest --config jest.config.ts",
"test:watch": "jest --watchAll --config jest.config.ts",
"dev": "webpack --config webpack.dev.js",
"start": "webpack serve --open --config webpack.dev.js ",
"build": "webpack --config webpack.prod.js",
"prod": "npm run build && npx serve dist",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"format": "prettier --write .",
"postinstall": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": " https://github.com/hhimanshu/create-react-ts-starter"
},
"keywords": [],
"author": "Harit Himanshu",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.17",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@storybook/react": "^6.1.18",
"@testing-library/react": "^11.2.5",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.2",
"eslint": "^7.20.0",
"html-webpack-plugin": "^5.1.0",
"husky": "^5.0.9",
"jest": "^26.6.3",
"msw": "^0.28.2",
"node-fetch": "^2.6.1",
"prettier": "2.2.1",
"remove-files-webpack-plugin": "^1.4.4",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.13",
"@chakra-ui/react": "^1.6.1",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"framer-motion": "^4.1.13",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-query": "^3.16.0"
},
"msw": {
"workerDirectory": "dist"
}
}