-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
97 lines (97 loc) · 2.96 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
{
"name": "roadmap-ui",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install",
"format": "prettier --write",
"format:all": "prettier --write ."
},
"dependencies": {
"@auth0/auth0-react": "^1.10.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@radix-ui/react-accordion": "^1.1.0",
"@radix-ui/react-checkbox": "^1.0.1",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-toast": "^1.1.2",
"@types/base-64": "^1.0.2",
"@types/dom-to-image": "^2.6.4",
"@types/events": "^3.0.0",
"@types/history": "^5.0.0",
"@types/markdown-to-jsx": "^7.0.1",
"@types/node": "^18.7.3",
"@types/react-anchor-link-smooth-scroll": "^1.0.2",
"@types/react-syntax-highlighter": "^15.5.9",
"axios": "^0.27.2",
"base-64": "^1.0.0",
"dom-to-image": "^2.6.0",
"dom-to-image-more": "^2.13.1",
"emojisplosion": "^2.6.1",
"events": "^3.3.0",
"framer-motion": "^6",
"history": "^5.3.0",
"immutability-helper": "^3.1.1",
"markdown-to-jsx": "^7.3.2",
"react": "^18.0.0",
"react-analytics-charts": "^1.2.13",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-beforeunload": "^2.5.3",
"react-dom": "^18.0.0",
"react-ga": "^3.3.1",
"react-ga4": "^1.4.1",
"react-icons": "^4.4.0",
"react-loader-spinner": "^5.1.7-beta.1",
"react-markdown": "^9.0.0",
"react-router-dom": "^6.3.0",
"react-router-navigation-prompt": "^1.9.6",
"react-share": "^4.4.0",
"react-syntax-highlighter": "^15.5.0",
"react-type-animation": "^2.1.2",
"react-use": "^17.4.0",
"tailwind-gradient-mask-image": "^1.0.0",
"universal-cookie": "^4.0.4",
"uuid-by-string": "^4.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitejs/plugin-react": "^1.3.0",
"@vitest/coverage-c8": "^0.27.2",
"autoprefixer": "^10.4.7",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jsdom": "^21.0.0",
"lint-staged": "^13.1.0",
"postcss": "^8.4.14",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vitest": "^0.27.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=20 --fix",
"prettier --write"
]
}
}