-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.73 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
{
"name": "flowww",
"version": "1.0.0",
"private": true,
"homepage": "./",
"dependencies": {
"@headlessui/react": "^1.7.18",
"@types/node": "^16.18.79",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"lodash": "^4.17.21",
"lucide-react": "^0.323.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.22.0",
"react-scripts": "5.0.1",
"reactflow": "^11.10.3",
"typescript": "^4.9.5"
},
"scripts": {
"start": "REACT_APP_NAME=$npm_package_name REACT_APP_VERSION=$npm_package_version react-scripts start",
"build": "REACT_APP_NAME=$npm_package_name REACT_APP_VERSION=$npm_package_version react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"eslint-config-prettier"
],
"plugins": [
"eslint-plugin-prettier"
],
"rules": {
"prettier/prettier": [
"warn",
{
"printWidth": 120,
"quoteProps": "consistent",
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1"
}
}