-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.23 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
{
"name": "hoppin-design-system",
"version": "3.0.0",
"private": true,
"description": "Design system and shared components for Hoppin.",
"main": "lib/index.js",
"module": "es/index.js",
"engines": {
"node": "18.x"
},
"files": [
"src",
"package.json",
"es",
"lib"
],
"repository": "git@github.com:luckylwk/hoppin-design-system.git",
"author": "jonashaefele <hello@jonashaefele.com>",
"dependencies": {
"@styled-system/prop-types": "^5.0.6",
"color": "^3.1.2",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.15",
"object-fit-images": "^3.2.4",
"rc-checkbox": "^2.1.7",
"react-beautiful-dnd": "^11.0.5",
"react-icons": "^3.7.0",
"react-portal": "^4.2.0",
"react-rangeslider": "^2.2.0",
"react-router-dom": "^5.0.1",
"react-select": "^3.0.4",
"react-tooltip": "^3.11.2",
"react-transition-group": "^4.3.0",
"rehype-react": "^4.0.1",
"remark-github-break": "^0.0.0",
"remark-parse": "^7.0.0",
"remark-rehype": "^5.0.0",
"slate": "^0.45.0",
"slate-md-serializer": "^5.4.3-1",
"slate-react": "^0.21.20",
"styled-components": "^4.3.1",
"styled-system": "^5.0.6",
"typescript": "^4.7.4",
"unified": "^8.3.2"
},
"devDependencies": {
"docz": "^2.2.0",
"exenv": "^1.2.2",
"husky": "^8.0.0",
"lint-staged": ">=8",
"nwb": "0.23.0",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"scripts": {
"build": "yarn run clean && yarn run build:components && yarn run build:docz",
"now-build": "yarn run build:docz",
"build:components": "nwb build-react-component",
"clean": "nwb clean-module",
"prepublishOnly": "npm run build",
"build:docz": "docz build",
"deploy": "now --prod",
"start": "docz dev",
"prettier:all": "prettier --write 'src/**/*.{js,jsx,css,json}'",
"prettier:check": "prettier --check 'src/**/*.{js,jsx,css,json}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn run build:components"
}
},
"lint-staged": {
"src/*.{js,jsx,css,json}": [
"prettier --write",
"git add"
]
}
}