-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·92 lines (92 loc) · 3.01 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
{
"name": "clean-react",
"version": "3.2.3",
"description": "NodeJs Rest API using TDD, Clean Architecture and Typescript",
"main": "index.js",
"scripts": {
"start": "node index",
"dev:base": "webpack-dev-server --config webpack.dev.js",
"dev": "npm run dev:base -- --open",
"build": "webpack --config webpack.prod.js",
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"test:coveralls": "npm run test:ci",
"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",
"check": "npm-check -u -s",
"prepare": "husky install"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^5.11.0",
"**/@typescript-eslint/parser": "^5.11.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@cypress/webpack-preprocessor": "^6.0.0",
"@faker-js/faker": "^8.3.1",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/axios": "^0.14.0",
"@types/cypress": "^1.1.3",
"@types/faker": "^6.6.9",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"cypress": "^13.6.1",
"eslint": "^8.13.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-standard": "^5.0.0",
"favicons-webpack-plugin": "^6.0.1",
"full-icu": "^1.4.0",
"git-commit-msg-linter": "^5.0.6",
"html-webpack-plugin": "^5.5.0",
"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.2.0",
"mini-css-extract-plugin": "^2.6.0",
"node-sass": "^9.0.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.2.6",
"typescript": "^5.3.3",
"webpack": "^5.72.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"axios": "^1.6.2",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"express": "^4.17.3",
"express-history-api-fallback": "^2.2.1",
"history": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"recoil": "^0.7.0"
}
}