-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.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
{
"name": "clean-react",
"version": "1.3.0",
"description": "React using TDD, Clean Architecture and Typescript",
"main": "index.js",
"scripts": {
"start": "webpack serve --open",
"test": "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 && coveralls < coverage/lcov.info",
"check": "npm-check -u -s",
"prepare": "husky install"
},
"keywords": [],
"author": "Yuri Cavalini",
"license": "GNU GPL3",
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/node": "^18.8.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"clean-webpack-plugin": "^4.0.0",
"coveralls": "^3.1.1",
"css-loader": "^6.7.1",
"eslint": "^8.24.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-testing-library": "^5.7.2",
"git-commit-msg-linter": "^4.2.1",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.1.2",
"jest-localstorage-mock": "^2.4.22",
"jsdom": "^20.0.1",
"lint-staged": "^13.0.3",
"node-sass": "^7.0.3",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.8",
"ts-loader": "^9.3.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0"
},
"dependencies": {
"axios": "^0.27.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^5.3.3"
}
}