-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.35 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
{
"name": "dustbin",
"version": "0.0.1",
"description": "",
"scripts": {
"test": "vitest --ui",
"coverage": "vitest run --coverage",
"prepare": "husky install",
"run:dustbin:dev": "pnpm -F dustbin-react dev",
"run:dustbin:build": "pnpm -F dustbin-react build",
"run:demo:dev": "pnpm -F demo dev",
"collection": "npm-run-all -s run:dustbin:build run:demo:dev",
"run:all:dev": "npm-run-all -p collection run:dustbin:dev",
"commitlint": "commitlint --config commitlint.config.js -e -V"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"keywords": [
"react",
"query",
"storage"
],
"author": "cavey1230",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/react": "^13.4.0",
"@types/js-cookie": "^3.0.2",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.28.3",
"@vitest/ui": "^0.27.3",
"axios": "^1.1.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"less": "^4.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-router-dom": "^6.4.3",
"rollup": "^3.9.1",
"rollup-plugin-dts": "^5.1.1",
"dustbin-react": "workspace:*",
"styled-components": "^5.3.6",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^3.2.3",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.27.3"
}
}