This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 3.12 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
{
"name": "clean-code-react",
"version": "2.0.0",
"description": "ReactJS, Hooks, Recoil, TDD, Clean Architecture, SOLID",
"author": "Gilberto Mossmann",
"license": "GNU GPL3",
"main": "index.js",
"scripts": {
"start": "node index",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"dev": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu jest --passWithNoTests --no-cache --runInBand",
"test:watch": "pnpm t -- --watch",
"test:staged": "pnpm t -- --findRelatedTests",
"test:ci": "pnpm t -- --coverage",
"test:coveralls": "pnpm test:ci && coveralls < coverage/lcov.info",
"test:cypress": "cypress open",
"test:cypress:run": "cypress run",
"test:cypress:ci": "start-server-and-test dev:base http-get://localhost:8080 test:cypress:run",
"prepare": "husky install"
},
"keywords": [],
"devDependencies": {
"@cypress/webpack-preprocessor": "^6.0.0",
"@faker-js/faker": "^8.3.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.10",
"@types/node": "^20.9.4",
"@types/prop-types": "^15.7.11",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"clean-webpack-plugin": "^4.0.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"cypress": "^13.6.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"favicons-webpack-plugin": "^6.0.1",
"full-icu": "^1.5.0",
"history": "^5.3.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-localstorage-mock": "^2.4.26",
"lint-staged": "^15.1.0",
"mini-css-extract-plugin": "^2.7.6",
"node-sass": "^9.0.0",
"prettier": "^3.1.0",
"prop-types": "^15.8.1",
"react-router": "^6.20.0",
"sass-loader": "^13.3.2",
"start-server-and-test": "^2.0.3",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"pnpm": {
"overrides": {
"semver@<7.5.2": ">=7.5.2",
"tough-cookie@<4.1.3": ">=4.1.3"
}
},
"dependencies": {
"axios": "^1.6.2",
"express": "^4.18.2",
"express-history-api-fallback": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.0",
"recoil": "^0.7.7"
}
}