-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.85 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
{
"name": "react-flex-lite",
"version": "7.1.0",
"description": "Flexbox components for React, as minimal as possible",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"docs": "typedoc src/index.tsx && gh-pages -d docs",
"lint": "prettier --write .",
"build": "npm run clean && tsc -b",
"clean": "rimraf dist",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"react",
"component",
"react-component",
"flexbox",
"flex",
"css",
"grid"
],
"contributors": [
"Contra <[email protected]> (https://contra.io)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yocontra/react-flex-lite.git"
},
"license": "MIT",
"dependencies": {
"clsx": "^2.0.0",
"css-vendor": "^2.0.5",
"hoist-non-react-statics": "^3.2.1",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"moize": "^6.0.0",
"nano-css": "^5.0.0",
"prop-types": "^15.7.2"
},
"overrides": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"react": ">=17.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^14.0.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^29.0.0",
"@types/lodash.omit": "^4.5.6",
"@types/lodash.pick": "^4.4.6",
"@types/prop-types": "^15.7.3",
"@types/react": "^18.0.0",
"@types/testing-library__jest-dom": "^5.9.5",
"gh-pages": "^5.0.0",
"husky": "^4.3.8",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^4.0.0",
"ts-jest": "^29.0.0",
"typedoc": "^0.23.27",
"typescript": "^5.0.0"
}
}