-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.47 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "hackthenorth.com",
"version": "2020.2.62",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:ts": "tsc && tsc -p cypress/tsconfig.json",
"e2e:open": "cypress open",
"e2e:ci": "npm run e2e:setup && percy exec -- cypress run",
"e2e:setup": "npm start & wait-on http://localhost:3000",
"type-check": "tsc --noEmit",
"lint": "npm run lint:ts && npm run lint:css",
"lint:ts": "eslint --ext .jsx,.js,.tsx,.ts src/ --fix",
"lint:css": "stylelint src",
"optimize:images": "node ./scripts/minimizeImages.js",
"optimize:images:all": "npm run optimize:images -- -a"
},
"dependencies": {
"@bugsnag/js": "^7.1.1",
"@bugsnag/plugin-react": "^7.1.1",
"@crello/react-lottie": "0.0.9",
"@elastic/apm-rum": "^5.2.0",
"@hackthenorth/hackerapi-js": "^3.0.12",
"@hackthenorth/north": "^1.6.0",
"@hackthenorth/quai": "^1.1.0",
"@juggle/resize-observer": "^3.1.3",
"@types/react-helmet": "^6.1.0",
"custom-event-polyfill": "^1.0.7",
"elastic-apm-node": "^3.6.1",
"focus-visible": "^5.1.0",
"history": "^4.10.1",
"intersection-observer": "^0.10.0",
"lodash.debounce": "^4.0.8",
"react": "^16.13.1",
"react-app-polyfill": "^1.0.6",
"react-cool-dimensions": "^0.6.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-intersection-observer": "^8.26.2",
"react-lottie": "^1.2.3",
"react-markdown": "^4.3.1",
"react-rellax": "^1.0.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"react-scrollspy": "^3.4.2",
"react-swipeable": "^5.5.1",
"smoothscroll-anchor-polyfill": "^1.3.2",
"smoothscroll-polyfill": "^0.4.4",
"styled-components": "^5.1.0",
"typescript": "^3.9.6",
"ua-parser-js": "^0.7.21"
},
"devDependencies": {
"@percy/cypress": "^2.3.1",
"@types/history": "^4.7.6",
"@types/jest": "25.1.4",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "12.12.31",
"@types/react": "16.9.25",
"@types/react-dom": "16.9.5",
"@types/react-lottie": "^1.2.5",
"@types/react-scrollspy": "^3.3.2",
"@types/smoothscroll-polyfill": "^0.3.1",
"@types/styled-components": "^5.1.0",
"@types/ua-parser-js": "^0.7.33",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"cypress": "^4.5.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"glob": "^7.1.6",
"husky": "^4.2.5",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^8.0.0",
"imagemin-svgo": "^7.1.0",
"prettier": "^2.0.5",
"stylelint": "^13.3.3",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"wait-on": "^4.0.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
},
"husky": {
"hooks": {
"pre-push": "git diff HEAD --quiet && npm run type-check && npm run lint"
}
}
}