-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.6 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.6 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
{
"name": "@productive-codebases/react-toolbox",
"version": "0.3.0",
"scripts": {
":d": "npm run dev",
"build": "CI=1 vite build",
"check:code": "tsc --noEmit",
"dev": "vite",
"format": "prettier --write src//**/*.{ts,tsx,css} --config ./.prettierrc",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{jsx,ts,tsx}'",
"prepare": "husky install",
"prepublishOnly": "npm run check:code && npm t && npm run build",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"npm run lint",
"npm run format"
]
},
"files": [
"dist"
],
"main": "./dist/react-toolbox.cjs.js",
"module": "./dist/react-toolbox.es.js",
"types": "./dist/index.d.ts",
"devDependencies": {
"@emotion/styled": "^11.11.0",
"@productive-codebases/build-variants": "^1.4.0",
"@productive-codebases/toolbox": "^1.1.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.1.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.3",
"vite-tsconfig-paths": "^4.2.1"
},
"peerDependencies": {
"@emotion/styled": ">=11.11.0",
"@productive-codebases/build-variants": ">=1.4.0",
"@productive-codebases/toolbox": ">=1.1.0",
"@types/debug": ">=4.0.0",
"react": ">=18.2",
"react-dom": ">=18.2"
},
"repository": {
"type": "git",
"url": "https://github.com/productive-codebases/react-toolbox"
},
"keywords": [],
"author": "Productive Codebases",
"bugs": {
"url": "https://github.com/productive-codebases/react-toolbox/issues"
},
"homepage": "https://github.com/productive-codebases/react-toolbox#readme",
"license": "MIT"
}