-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2 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
{
"name": "review-feed",
"version": "0.1.5",
"private": false,
"license": "MIT",
"description": "Review feed app",
"homepage": "https://review-feed.vercel.app/",
"repository": "sombreroEnPuntas/review-feed",
"scripts": {
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix && bash -c tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage",
"dev": "next dev",
"build": "next build",
"start": "next start",
"release": "standard-version"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn eslint --quiet --fix",
"bash -c tsc --noEmit"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@reduxjs/toolkit": "^1.4.0",
"next": "9.5.2",
"portable-fetch": "^3.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"retro-ui": "^0.0.10",
"styled-components": "^5.1.1",
"universal-cookie": "^4.0.3",
"url": "^0.11.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^10.4.8",
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.10",
"@types/node": "^14.0.27",
"@types/react": "^16.9.46",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"babel-jest": "^26.3.0",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"jest": "^26.4.0",
"jest-styled-components": "^7.0.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"standard-version": "^9.0.0",
"typescript": "^3.9.7"
}
}