-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.4 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.4 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
{
"name": "shadow-react-dom",
"version": "1.0.2",
"main": "dist/cjs/index.cjs.js",
"module": "dist/esm/index.esm.js",
"browser": "dist/umd/index.min.js",
"types": "dist/types/index.d.ts",
"repository": "git@github.com:GDYG/shadow-react.git",
"author": "GDYG",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"preview": "yarn client:dev",
"build": "yarn client:prod",
"client:dev": "scripty",
"client:prod": "scripty",
"prepare": "husky install",
"lint": "lint-staged",
"format": "prettier --write \"**/*.{ts,tsx,js,json,css,scss}\""
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@soda/friendly-errors-webpack-plugin": "^1.8.1",
"@swc/core": "^1.4.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^7.1.1",
"autoprefixer": "^10.4.18",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mini-css-extract-plugin": "^2.8.1",
"node-notifier": "^10.0.1",
"os": "^0.1.2",
"postcss": "^8.4.35",
"postcss-loader": "^8.1.1",
"postcss-pxtorem": "^6.1.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"scripty": "^2.1.1",
"shadow-react-dom": "^1.0.1",
"swc-loader": "^0.2.6",
"tailwindcss": "^3.4.1",
"ts-loader": "^9.5.1",
"typescript": "^5.4.2",
"webpack": "^5.90.3",
"webpack-build-notifier": "^2.3.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"webpack-merge": "^5.10.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{js,css,md,ts,tsx}": "prettier --write"
}
}