-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.34 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
71
72
73
74
75
76
77
78
79
80
{
"name": "react18-d3js-swc",
"version": "1.0.0",
"description": "d3js project based on react18, swc",
"main": "index.js",
"author": "[email protected]",
"license": "MIT",
"keywords": [
"react18",
"swc",
"d3"
],
"scripts": {
"start": "webpack-dev-server --mode=development --open",
"build": "webpack --mode=production",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"./**/*.{ts,tsx,js,jsx}\" --ignore-path .eslintignore || true",
"lint:fix": "eslint --fix \"./**/*.{ts,tsx,js,jsx}\" --ignore-path .eslintignore || true",
"prettier": "prettier --write --config ./.prettierrc \"./src/**/*.{ts,tsx,js,jsx}\" || true"
},
"dependencies": {
"classnames": "^2.3.1",
"colorbrewer": "^1.5.2",
"d3": "^7.3.0",
"d3-shape": "^3.1.0",
"randomcolor": "^0.6.2",
"react": "^18.0.0-rc.0",
"react-dom": "^18.0.0-rc.0",
"react-router-dom": "^6.2.1"
},
"devDependencies": {
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.130",
"@types/colorbrewer": "^1.0.29",
"@types/d3": "^7.1.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"autoprefixer": "^10.4.2",
"css-loader": "^6.5.1",
"dart-sass": "^1.25.0",
"eslint": "^8.7.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.2",
"open-color": "^1.9.1",
"postcss": "^8.4.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.2.3",
"prettier": "^2.5.1",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"swc-loader": "^0.1.15",
"tailwindcss": "^3.0.15",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}