generated from janeksmielowski/react-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.9 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
{
"name": "react-ts-library",
"description": "React Typescript library template, with Babel, Webpack and ESLint configuration",
"license": "MIT",
"version": "0.1.0",
"private": true,
"author": "janeksmielowski",
"repository": "https://github.com/janeksmielowski/react-ts-library",
"main": "dist/index.js",
"peerDependencies": {
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@babel/cli": "7.12.8",
"@babel/core": "7.12.9",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.12.7",
"@babel/preset-react": "7.12.7",
"@babel/preset-typescript": "7.12.7",
"@testing-library/jest-dom": "5.11.6",
"@testing-library/react": "11.2.2",
"@types/jest": "26.0.15",
"@types/node": "12.0.0",
"@types/react": "16.9.53",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
"eslint": "7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.5",
"eslint-webpack-plugin": "2.4.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"ts-jest": "26.4.4",
"ts-loader": "8.0.12",
"typescript": "4.1.2",
"webpack": "5.9.0",
"webpack-cli": "4.2.0"
},
"scripts": {
"build": "webpack --mode=production",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn lint --fix",
"test": "jest"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}