-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.66 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.66 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@catchandrelease/arbor",
"version": "0.110.2",
"description": "React component library for Catch&Release",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "TZ=UTC jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "yarn eslint && stylelint src",
"eslint": "eslint src stories .storybook",
"test:ci": "yarn test --runInBand && yarn lint",
"deploy-storybook": "yarn storybook-to-ghpages",
"build": "yarn typecheck && yarn clean && tsc --project tsconfig.build.json",
"clean": "rm -rf dist/*",
"typecheck": "tsc",
"prepare": "husky install"
},
"author": "Damian Galarza",
"contributors": [
"Anthony Costanzo",
"Euan Lau"
],
"license": "MIT",
"repository": "git@github.com:CatchRelease/arbor.git",
"engines": {
"node": ">=12.20 <15"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/serialize": "^1.0.2",
"@emotion/styled": "^11.6.0",
"@styled-system/prop-types": "^5.1.5",
"@styled-system/theme-get": "^5.1.2",
"@tippyjs/react": "^4.2.6",
"@types/lodash": "^4.14.178",
"@types/react-modal": "^3.13.1",
"@types/styled-system": "^5.1.14",
"@types/styled-system__theme-get": "^5.0.2",
"csstype": "^3.0.10",
"framer-motion": "^4.1.17",
"lodash": "^4.17.21",
"moment": "^2.25.3",
"polished": "^4.1.3",
"prop-types": "^15.8.0",
"react": "^17.0.2",
"react-datetime": "^3.1.1",
"react-day-picker": "^7.4.10",
"react-dom": "^17.0.2",
"react-modal": "^3.14.4",
"react-popover": "CatchRelease/littlebits-react-popover#master",
"react-select": "^5.2.1",
"react-toastify": "^8.1.0",
"styled-system": "^5.1.5",
"tippy.js": "^6.3.7",
"type-fest": "^2.8.0"
},
"devDependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/eslint-plugin": "^11.7.0",
"@emotion/jest": "^11.7.1",
"@emotion/snapshot-serializer": "^0.8.2",
"@storybook/addon-a11y": "^6.5.7",
"@storybook/addon-essentials": "^6.5.7",
"@storybook/addons": "^6.5.7",
"@storybook/react": "^6.5.7",
"@storybook/storybook-deployer": "^2.8.10",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@tsconfig/recommended": "^1.0.1",
"@types/enzyme": "^3.10.11",
"@types/jest": "^27.4.0",
"@types/jest-plugin-context": "^2.9.4",
"@types/react": "^17.0.38",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"enzyme": "^3.7.0",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-storybook": "^0.5.5",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.5",
"jest-enzyme": "^7.1.2",
"jest-plugin-context": "^2.9.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "^0.13.9",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"storybook-deployer": {
"gitUsername": "GH Pages Bot",
"gitEmail": "hello@ghbot.com",
"commitMessage": "Deploy Storybook to GitHub Pages --skip-ci"
}
}