-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.92 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
{
"name": "firebot-website",
"author": "@ebiggz",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "npm run lint && npm run type-check && npm run test"
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm run lint"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@headlessui/react": "^1.7.9",
"@heroicons/react": "^1.0.1",
"@tanstack/react-query": "^5.20.1",
"accept-language-parser": "^1.5.0",
"amplitude-js": "^8.13.1",
"axios": "^1.3.2",
"clsx": "^1.2.1",
"framer-motion": "^9.0.1",
"js-file-download": "^0.4.12",
"mobx": "^6.7.0",
"mobx-react-lite": "^3.4.0",
"moment": "^2.29.1",
"next": "^13.1.6",
"next-auth": "^4.19.2",
"node-cache": "^5.1.2",
"node-json-db": "^2.3.0",
"pg": "^8.11.3",
"popmotion": "^11.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.8.0",
"react-markdown": "^9.0.1",
"react-parallax-tilt": "^1.7.210",
"react-scrollspy": "^3.4.3",
"react-spinners": "^0.13.8",
"react-sticky-el": "^2.0.9",
"react-stickynode": "^4.1.0",
"react-use": "^17.4.0",
"uuid": "^9.0.0",
"xlsx": "^0.18.5",
"yup": "^1.3.3"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/accept-language-parser": "^1.5.6",
"@types/amplitude-js": "^8.0.2",
"@types/jest": "^29.4.0",
"@types/node": "^14.14.25",
"@types/pg": "^8.11.0",
"@types/react": "^18.0.27",
"@types/react-scrollspy": "^3.3.5",
"@types/react-sticky-el": "^1.0.3",
"@types/react-stickynode": "^4.0.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.4.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.1",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"tailwind-scrollbar": "^2.1.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5"
}
}