-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 3.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-rspack-boilerplate",
"private": "true",
"type": "module",
"eslintConfig": {
"extends": "@yutengjing/eslint-config-react",
"settings": {
"import/resolver": {
"typescript": {}
}
}
},
"stylelint": {
"extends": "@yutengjing/stylelint-config-basic",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind"
]
}
]
}
},
"prettier": "@yutengjing/prettier-config",
"browserslist": [
"Chrome >= 64",
"Safari >= 12"
],
"scripts": {
"dev": "NODE_OPTIONS=\"--import tsx\" rspack serve --node-env development -c scripts/rspack/dev.ts",
"build": "NODE_OPTIONS=\"--import tsx\" rspack build --node-env production -c scripts/rspack/prod.ts",
"build:analyze": "NODE_OPTIONS=\"--import tsx\" rspack build --node-env production -c scripts/rspack/analyze.ts",
"lint": "pnpm run /^lint:/",
"lint:type": "tsc -b tsconfig.check.json",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint src/**/*.{css,scss}",
"lint:format": "prettier . --check",
"check-compat": "pnpm run /^check-compat:/",
"check-compat:js": "check-es-compat ./dist",
"check-compat:css": "tsx ./scripts/check-css-compat.ts"
},
"dependencies": {
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-react": "^0.358.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@rsdoctor/rspack-plugin": "^0.1.1",
"@rspack/cli": "^0.5.3",
"@rspack/core": "^0.5.3",
"@rspack/plugin-react-refresh": "^0.5.3",
"@swc/core": "^1.4.0",
"@swc/helpers": "^0.5.6",
"@types/node": "^20.11.16",
"@types/react": "^18.2.54",
"@types/react-dom": "^18.2.18",
"@types/webpack-env": "^1.18.4",
"@yutengjing/eslint-config-react": "^0.5.2",
"@yutengjing/prettier-config": "^1.0.0",
"@yutengjing/stylelint-config-basic": "^0.1.0",
"@yutengjing/tsconfig-node": "^0.0.5",
"@yutengjing/tsconfig-react": "^0.0.5",
"autoprefixer": "^10.4.18",
"browserslist": "^4.22.3",
"check-es-compat": "^3.2.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"doiuse": "^6.0.2",
"eslint": "^8.56.0",
"eslint-define-config": "^2.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"html-webpack-plugin": "^5.6.0",
"lightningcss": "^1.23.0",
"postcss": "^8.4.35",
"postcss-load-config": "^5.0.3",
"postcss-loader": "^8.1.1",
"prettier": "^3.2.5",
"react-refresh": "^0.14.0",
"sass": "^1.70.0",
"sass-loader": "^14.1.0",
"stylelint": "^16.2.1",
"stylelint-no-unsupported-browser-features": "^8.0.1",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"webpack-merge": "^5.10.0"
},
"packageManager": "[email protected]+sha256.cea6d0bdf2de3a0549582da3983c70c92ffc577ff4410cbf190817ddc35137c2"
}