-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "clean-arch-react-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "Fabricio Ziliotti",
"scripts": {
"test": "jest --passWithNoTests",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fziliotti/clean-arch-react-ts.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/Fziliotti/clean-arch-react-ts/issues"
},
"homepage": "https://github.com/Fziliotti/clean-arch-react-ts#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/faker": "^4.1.12",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.22",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-standard-with-typescript": "^11.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"faker": "^4.1.0",
"git-commit-msg-linter": "^2.4.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
},
"dependencies": {
"axios": "^0.19.2"
}
}