-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "react-from-scratch",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "webpack serve -c config/build/webpack.development.js",
"build": "webpack -c config/build/webpack.production.js",
"test": "jest -c ./config/test/jest.config.js",
"test:ci": "yarn test --silent --ci=true --coverage --coverageReporters=cobertura --coverageReporters=lcov --maxWorkers=4",
"lint": "eslint ./src ./config --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "0.4.3",
"@svgr/webpack": "5.5.0",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@types/jest": "26.0.24",
"@types/react": "17.0.16",
"@types/react-dom": "17.0.9",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"css-loader": "6.2.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"html-webpack-plugin": "5.3.2",
"jest": "27.0.6",
"prettier": "2.3.2",
"react-refresh": "0.10.0",
"react-refresh-typescript": "2.0.2",
"sass": "1.37.5",
"sass-loader": "12.1.0",
"style-loader": "3.2.1",
"ts-jest": "27.0.4",
"ts-loader": "9.2.5",
"typescript": "4.3.5",
"webpack": "5.49.0",
"webpack-cli": "4.7.2",
"webpack-dev-server": "3.11.2",
"webpack-merge": "5.8.0"
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
},
"prettier": "./config/linter/.prettierrc.json",
"eslintConfig": {
"extends": "./config/linter/.eslintrc"
}
}