-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.21 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
{
"name": "@variant/homepage",
"private": true,
"version": "1.0.0",
"main": "index.js",
"keywords": [],
"author": "Mikael Brevik <mb@variant.no>",
"license": "MIT",
"description": "Homepage for Variant.no",
"devDependencies": {
"@types/animejs": "^3.1.11",
"@types/d3-array": "^3.2.1",
"@types/jsdom": "^21.1.5",
"@types/markdown-it": "^13.0.6",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-slider": "^1.3.4",
"@typescript-eslint/parser": "^6.11.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": ">=8.0.3",
"lint-staged": ">=15.1.0",
"next-compose-plugins": "^2.2.1",
"prettier": "^3.1.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"@next/bundle-analyzer": "^14.0.2",
"@uploadthing/react": "^6.7.2",
"@variant/components": "^2.0.11",
"@variant/profile": "^3.0.1",
"@visx/curve": "^3.3.0",
"@visx/gradient": "^3.3.0",
"@visx/responsive": "^3.3.0",
"@visx/scale": "^3.5.0",
"@visx/shape": "^3.5.0",
"animejs": "^3.2.1",
"d3-array": "^3.2.4",
"date-fns": "^2.30.0",
"embla-carousel-autoplay": "^8.2.0",
"embla-carousel-react": "^8.2.0",
"framer-motion": "^10.16.4",
"gray-matter": "^4.0.3",
"isomorphic-dompurify": "^2.15.0",
"markdown-it": "^13.0.2",
"next": "^14.0.2",
"next-images": "^1.8.5",
"node-html-parser": "^6.1.11",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.5.3",
"react-slider": "^2.0.6",
"rss-parser": "^3.13.0",
"uploadthing": "^6.13.2"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"gen:pay": "node tools/pay.js",
"analyze-bundle": "ANALYZE=true yarn build",
"prepare": "husky install",
"test": "vitest"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}