-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.51 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": "0.0.0-development",
"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 --collectCoverage=false",
"start": "webpack serve --config webpack.dev.js ",
"start-prod": "rm -rf dist && yarn build && npx -y serve -s dist",
"build": "webpack --config webpack.prod.js",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"format": "prettier --write .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"start-prod-storybook": "yarn build-storybook && npx -y serve storybook-static -l 5858",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/hhimanshu/create-react-ts-starter"
},
"keywords": [],
"author": "Harit Himanshu",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/eslint-parser": "7.14.7",
"@babel/preset-env": "7.14.7",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.14.5",
"@storybook/addon-actions": "6.3.4",
"@storybook/addon-essentials": "6.3.4",
"@storybook/addon-links": "6.3.4",
"@storybook/react": "6.3.4",
"@svgr/webpack": "5.5.0",
"@testing-library/react": "12.0.0",
"@types/enzyme": "3.10.9",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "26.0.24",
"@types/react": "17.0.14",
"@types/react-dom": "17.0.9",
"@types/react-router-dom": "5.1.8",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
"css-loader": "5.2.7",
"eslint": "7.31.0",
"html-webpack-plugin": "5.3.2",
"husky": "7.0.1",
"jest": "26.6.3",
"prettier": "2.3.2",
"react-dev-utils": "11.0.4",
"semantic-release": "17.4.4",
"style-loader": "3.1.0",
"ts-loader": "9.2.3",
"ts-node": "10.1.0",
"typescript": "4.3.5",
"url-loader": "4.1.1",
"webpack": "5.45.1",
"webpack-cli": "4.7.2",
"webpack-dev-server": "3.11.2",
"webpack-merge": "5.8.0"
},
"dependencies": {
"@fontsource/poppins": "4.5.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "^5.2.0"
},
"release": {
"branches": [
"main"
]
}
}