-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.69 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
{
"name": "fibery-web-extension",
"version": "1.0.0",
"private": true,
"engines": {
"node": "20"
},
"dependencies": {
"@types/node": "^20.3.0",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "3.39.3",
"rehype-parse": "^9.0.0",
"rehype-remark": "^10.0.0",
"remark-stringify": "^11.0.0",
"typescript": "~5.1.3",
"unified": "^11.0.4",
"unist-util-visit-parents": "^6.0.1"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint .",
"test": "vitest",
"release": "node clean-release.js && cross-env VITE_APP_HOST=https://fibery.io yarn build && node make-release.cjs"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@tailwindcss/forms": "0.5.3",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"@vitejs/plugin-react": "4.0.0",
"autoprefixer": "10.4.14",
"cross-env": "7.0.3",
"dotenv": "16.1.4",
"eslint": "8.42.0",
"eslint-plugin-unicorn": "47.0.0",
"globby": "13.1.4",
"jest-environment-jsdom": "^29.5.0",
"postcss": "8.4.38",
"prettier": "2.8.8",
"tailwindcss": "3.3.2",
"vite": "5.2.11",
"vitest": "1.6.0",
"yazl": "2.5.1"
}
}