-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.46 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.46 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "graphpainter",
"version": "2.6.0",
"private": true,
"homepage": "https://dkpark10.github.io/graphpainter",
"author": "dkpark10",
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js",
"dev:ex": "webpack-dev-server --config webpack.dev.js --env extension",
"build": "webpack --config webpack.prod.js",
"build:local": "cross-env LOCAL_BUILD=true webpack --config webpack.prod.js",
"build:ex": "webpack --config webpack.extension.js",
"zip:ex": "cd dist && zip -r ../graphpainter-extension.zip . && cd ..",
"package:ex": "pnpm run build:extension && pnpm run zip:extension",
"prebuild": "rimraf dist",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint --fix \"./src/**/*.{ts,tsx,js,jsx}\"",
"predeploy": "pnpm run build",
"deploy": "pnpm run predeploy && pnpm run test && gh-pages -d dist",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx}\""
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-force": "^3.0.0",
"d3-hierarchy": "^3.1.2",
"lucide-react": "^0.563.0",
"radix-ui": "^1.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-transition-group": "^4.4.5",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"web-vitals": "^1.1.2",
"zustand": "^4.3.8"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/chrome": "^0.0.287",
"@types/d3-force": "^3.0.10",
"@types/d3-hierarchy": "^3.1.7",
"@types/jest": "^29.2.5",
"@types/node": "^25.1.0",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@types/react-transition-group": "^4.4.12",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.3",
"date-fns": "^3.6.0",
"eslint": "^8.0.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "latest",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.6.10",
"eslint-webpack-plugin": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"postcss": "^8.4.21",
"postcss-loader": "^7.2.4",
"prettier": "^2.8.3",
"rimraf": "^3.0.2",
"style-loader": "^3.3.2",
"tailwind-scrollbar-hide": "^4.0.0",
"tailwindcss": "^4.1.11",
"ts-loader": "^9.2.6",
"typescript": "4.8.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1",
"webpack-merge": "^5.8.0"
}
}