-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.87 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
{
"name": "tdd-clean-achitecture",
"version": "1.0.0",
"main": "index.js",
"repository": "https://[email protected]/Jojr/tdd-clean-achitecture.git",
"author": "João Belem Jr <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack serve --open",
"startdev": "webpack serve --mode development --env development --hot --port 3000",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "yarn test -- --watch",
"test:staged": "yarn test -- --findRelatedTests",
"test:ci": "yarn test -- --coverage"
},
"devDependencies": {
"@testing-library/react": "^11.2.5",
"@types/axios": "^0.14.0",
"@types/faker": "^5.1.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "4",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"eslint": "7",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "4",
"faker": "^5.1.0",
"git-commit-msg-linter": "^3.0.0",
"html-webpack-plugin": "^5.0.0",
"html-webpack-template": "^6.2.0",
"husky": "^4.3.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-localstorage-mock": "^2.4.12",
"lint-staged": "^10.5.3",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"axios": "^0.21.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
}
}