-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.64 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": "clean-react",
"version": "3.1.0",
"description": "Sistema em ReactJS com o uso de Hooks, Typescript, TDD, Clean Architecture, Design Patterns e SOLID principles",
"author": "Alexandre Oliveira",
"license": "GNU GPL3",
"scripts": {
"start": "node index",
"build": "webpack --config webpack.prod.js",
"dev:base": "webpack-dev-server --config webpack.dev.js",
"dev": "npm run dev:base -- --open",
"lint": "eslint '{src,tests}/**'",
"lint:fix": "npm run lint -- --fix",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm t -- --watch",
"test:staged": "npm t -- --findRelatedTests",
"test:ci": "npm t -- --coverage",
"test:coveralls": "npm run 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",
"check": "npm-check -s -u",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.5.0",
"express": "^4.18.2",
"express-history-api-fallback": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"recoil": "^0.7.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/faker": "^5.5.9",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.2",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"clean-webpack-plugin": "^4.0.0",
"coveralls": "^3.1.1",
"css-loader": "^6.8.1",
"cypress": "^13.2.0",
"eslint": "^8.49.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.33.2",
"faker": "^5.5.3",
"favicons-webpack-plugin": "^6.0.1",
"git-commit-msg-linter": "^5.0.4",
"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": "^14.0.1",
"mini-css-extract-plugin": "^2.7.6",
"node-sass": "^9.0.0",
"sass-loader": "^13.3.2",
"start-server-and-test": "^2.0.0",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}