-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "react-flow-vite-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm run flow && vite",
"build": "npm run flow && vite build",
"format": "prettier ./src --write --ignore-path .gitignore && git update-index --again",
"lint": "eslint . --ext jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"serve": "npm run build && npm run preview",
"flow": "flow"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/preset-flow": "^7.23.3",
"@vitejs/plugin-react": "^4.2.1",
"babel-plugin-syntax-hermes-parser": "^0.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ft-flow": "^3.0.3",
"eslint-plugin-react-refresh": "^0.4.5",
"flow-bin": "^0.228.0",
"flow-typed": "^3.9.0",
"hermes-eslint": "^0.19.0",
"prettier": "^2.8.8",
"prettier-plugin-hermes-parser": "^0.19.0",
"vite": "^5.0.8",
"vite-plugin-babel": "^1.2.0"
},
"engines": {
"yarn": "1.22.21"
}
}