-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
77 lines (77 loc) · 2.1 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
75
76
77
{
"name": "with-typescript-eslint-jest",
"author": "@erikdstock",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write **/*.{js,ts,tsx}",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@cryptostats/header.header": "^0.0.18",
"@cryptostats/header.sponsor_cta": "^0.0.20",
"@cryptostats/sdk": "^0.2.13",
"@popperjs/core": "^2.9.2",
"@types/react-transition-group": "^4.4.0",
"@types/redis": "^2.8.28",
"date-fns": "^2.16.1",
"i18next": "^21.6.13",
"i18next-browser-languagedetector": "^6.1.3",
"mongodb": "^3.6.6",
"next": "12",
"next-images": "^1.4.1",
"next-plausible": "2.1.2-beta.0",
"numeral": "^2.0.6",
"pg": "^8.5.1",
"react": "^16.13.1",
"react-datepicker": "^3.6.0",
"react-dom": "^16.13.1",
"react-feather": "^2.0.9",
"react-ga": "^3.1.2",
"react-i18next": "^11.15.5",
"react-popper": "^2.2.5",
"react-select": "^4.3.0",
"react-transition-group": "^4.4.1",
"recharts": "^2.0.9",
"redis": "^3.1.0",
"save-svg-as-png": "^1.4.17",
"sharp": "^0.29.3"
},
"devDependencies": {
"@testing-library/react": "^10.0.1",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.5",
"@types/react": "^16.9.27",
"@types/testing-library__react": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-jest": "^25.2.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"jest": "^25.2.3",
"jest-watch-typeahead": "^0.5.0",
"lint-staged": "^10.0.10",
"prettier": "^2.0.2",
"typescript": "^4.2.3"
}
}