-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
94 lines (94 loc) · 2.77 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
{
"name": "mstable-landing",
"version": "2.0.0",
"private": true,
"description": "mStable Landing Page",
"bugs": {
"url": "https://github.com/mstable/mstable-landing/issues"
},
"license": "LGPL-3.0-or-later",
"author": "Stability Labs Pty. Ltd. <[email protected]>",
"scripts": {
"build": "rm -rf dist && yarn vite-ssr build",
"dev": "yarn vite --port 1337 --open --force",
"lint": "yarn eslint ./src --fix",
"prepare": "husky install",
"start": "node server.js"
},
"lint-staged": {
"*.{ts,tsx,mdx}": "eslint --cache --fix"
},
"prettier": {
"printWidth": 140,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"countup.js": "./lib/countup.js"
},
"dependencies": {
"@react-three/drei": "^8.20.2",
"@react-three/fiber": "^6.1.1",
"@react-three/postprocessing": "^2.0.3",
"@types/exenv": "^1.2.0",
"@types/numeral": "^2.0.1",
"@types/react-countup": "^4.3.0",
"@types/react-router-config": "^5.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/recharts": "^1.8.19",
"@types/styled-components": "^5.1.7",
"@types/three": "^0.128.0",
"@vitejs/plugin-react": "^1.3.2",
"countup.js": "./lib/countup.js",
"date-fns": "^2.19.0",
"exenv": "^1.2.2",
"flex-gap-polyfill": "^2.2.1",
"numeral": "^2.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.0.9",
"react-hook-inview": "^4.3.8",
"react-loading-skeleton": "^2.2.0",
"react-resize-detector": "2.3.0",
"react-router-dom": "^6.3.0",
"react-scripts": "^4.0.3",
"react-use": "15.3.8",
"recharts": "1.8.5",
"resize-observer-polyfill": "1.5.1",
"styled-components": "^5.2.1",
"three": "^0.128.0",
"use-onclickoutside": "^0.4.0",
"vite-plugin-svgr": "^2.1.0",
"vite-ssr": "^0.16.0"
},
"devDependencies": {
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"express": "^4.17.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"node-fetch": "2.6.7",
"postcss": "^8.2.7",
"prettier": "^2.2.1",
"serve-static": "^1.14.1",
"stylus": "0.58.1",
"typescript": "4.7.2",
"vite": "^2.9.16"
}
}