-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.65 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
{
"name": "freedomtool-landing",
"private": true,
"version": "0.0.0",
"gitHooks": {
"pre-commit": "tsc && yarn lint",
"pre-push": "yarn rsc"
},
"scripts": {
"build": "vite build",
"start": "vite",
"analyze": "vite build --mode analyze",
"lint": "yarn lint:styles && yarn lint:scripts",
"lint:styles": "stylelint \"src/**/*.{css,sass,scss}\" --max-warnings=0",
"lint:scripts": "eslint \"{src,config}/**/*.{js,ts,jsx,tsx}\" --cache --fix --max-warnings=0 && tsc --noEmit",
"preview": "vite preview",
"rsc": "node scripts/release-sanity-check.mjs"
},
"dependencies": {
"@distributedlab/tools": "^1.0.0-rc.14",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"downshift": "^8.5.0",
"framer-motion": "^10.18.0",
"i18next": "^23.10.1",
"lodash": "^4.17.21",
"loglevel": "^1.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.22.3",
"react-toastify": "^9.1.3",
"react-tooltip": "^5.26.3",
"react-use": "^17.5.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1",
"valtio": "^1.13.2"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.5",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.74.1",
"stylelint": "^16.3.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-declaration-strict-value": "^1.10.4",
"stylelint-scss": "^6.2.1",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-svg-icons": "^2.0.1",
"vite-tsconfig-paths": "^4.3.2",
"yorkie": "^2.0.0"
},
"packageManager": "[email protected]"
}