This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "flojoy",
"version": "0.1.0",
"main": "components/index.js",
"types": "components/index.d.ts",
"scripts": {
"start": "vite",
"cleanup": "rmdir /s /q dist build components types styles",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "npm run build",
"build": "tsc --project tsconfig.json && npm run build:types && npm run tsc-path:com && npm run tsc-path:types && npm run build:css",
"build:css": "tailwindcss -i ./src/index.css -o ./styles/styles.css",
"build:types": "tsc --project tsconfig-types.json",
"tsc-path:com": "tscpaths -p tsconfig.json -s ./src -o ./components",
"tsc-path:types": "tscpaths -p tsconfig.json -s ./src -o ./types",
"watch": "tsc-watch --project tsconfig.json --onSuccess \"npm run tsc-path:com\" & npm run watch:types & npm run watch:css",
"watch:css": "tailwindcss -i ./src/index.css -o ./styles/styles.css --watch",
"watch:types": "tsc-watch --project tsconfig-types.json --onSuccess \"npm run tsc-path:types\""
},
"dependencies": {
"@tabler/icons-react": "^2.17.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"plotly.js": "2.23.2",
"react-markdown": "^8.0.7",
"react-plotly.js": "^2.6.0",
"reactflow": "^11.7.0"
},
"devDependencies": {
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react": "^4.0.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"postcss": "^8.4.26",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.3",
"tsc-alias": "^1.8.7",
"tsc-watch": "^6.0.4",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"typescript": "^5.0.2",
"vite": "^4.4.0"
}
}