-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.85 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
{
"name": "hackthenorth.com",
"version": "2022.0.9",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"analyze": "ANALYZE=true npm run build",
"start": "next start",
"type-check": "tsc",
"lint": "npm run lint:ts",
"lint:ts": "eslint \"./**/*.{ts,tsx}\" --quiet --fix",
"prepare": "husky install",
"husky": "npx husky add .husky/pre-push 'npm run type-check && npm run lint'",
"optimize:images": "node src/scripts/minimizeImages.js -- -a"
},
"dependencies": {
"@crello/react-lottie": "0.0.11",
"@hackthenorth/analytics": "^0.0.4",
"@hackthenorth/north": "^1.7.1",
"@juggle/resize-observer": "^3.3.1",
"@next/bundle-analyzer": "^10.2.3",
"framer-motion": "^4.1.16",
"gsap": "^3.6.1",
"jquery": "^1.12.0",
"js-cookie": "^2.2.1",
"lodash.debounce": "^4.0.8",
"next": "10.0.8",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.7.0",
"react": "^17.0.2",
"react-cool-dimensions": "^2.0.6",
"react-dom": "^17.0.2",
"react-hotjar": "^2.2.1",
"react-intersection-observer": "^8.32.0",
"react-lottie-player": "^1.3.1",
"react-markdown": "^5.0.3",
"react-modal": "^3.13.1",
"react-scrollspy": "^3.4.3",
"react-spring": "^9.2.1",
"styled-components": "^5.3.0",
"ua-parser-js": "^0.7.26"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@svgr/webpack": "^5.5.0",
"@types/js-cookie": "^2.2.6",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^12.12.21",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.1",
"@types/react-modal": "^3.12.0",
"@types/react-scrollspy": "^3.3.3",
"@types/styled-components": "^5.1.9",
"@types/ua-parser-js": "^0.7.35",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-macros": "^3.0.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"glob": "^7.1.6",
"husky": "^5.1.3",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^9.0.0",
"prettier": "^2.2.1",
"tailwindcss": "^2.0.4",
"twin.macro": "^2.3.2",
"typescript": "^4.2.2"
},
"babelMacros": {
"twin": {
"preset": "styled-components"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {},
"license": "MIT"
}