-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.01 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
{
"name": "currency-exchange",
"version": "1.5.0",
"description": "Currency exchange rates.",
"repository": {
"type": "git",
"url": "git+https://github.com/sombreroEnPuntas/currency-exchange.git"
},
"keywords": [
"challenge",
"currency",
"exchange",
"revolut"
],
"author": "Mati <matiasfornes@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sombreroEnPuntas/currency-exchange/issues"
},
"homepage": "https://github.com/sombreroEnPuntas/currency-exchange#readme",
"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.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"redux": "^4.0.5"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.2",
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.13",
"@types/react": "^16.9.49",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-jest": "^26.3.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"react-test-renderer": "^16.13.1",
"standard-version": "^9.0.0",
"typescript": "^4.0.2"
}
}