This repository has been archived by the owner on Aug 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
128 lines (128 loc) · 4.25 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "pouncejs",
"description": "A collection of UI components from Panther labs",
"version": "0.0.0-semantically-released",
"main": "dist/cjs/index.js",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"sideEffects": false,
"private": false,
"keywords": [
"react",
"components",
"styled-system",
"emotion",
"theme",
"design system",
"Panther"
],
"files": [
"dist"
],
"dependencies": {
"@emotion/react": "^11.4.0",
"@emotion/serialize": "^1.0.2",
"@emotion/styled": "^11.3.0",
"@juggle/resize-observer": "^3.3.1",
"@reach/auto-id": "^0.15.3",
"@reach/dialog": "^0.15.3",
"@reach/menu-button": "^0.15.3",
"@reach/popover": "^0.15.3",
"@reach/tabs": "^0.15.3",
"@reach/tooltip": "^0.15.3",
"@reach/utils": "^0.15.3",
"@styled-system/css": "^5.1.5",
"@styled-system/should-forward-prop": "^5.1.5",
"@types/fuzzaldrin": "^2.1.4",
"@types/history": "^4.7.9",
"@types/lodash": "^4.14.171",
"@types/reach__menu-button": "^0.1.1",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.6",
"@types/react-textarea-autosize": "^4.3.6",
"@types/styled-system": "^5.1.12",
"@types/styled-system__css": "^5.0.16",
"@types/styled-system__should-forward-prop": "^5.1.2",
"cross-env": "^7.0.3",
"dayjs": "^1.10.6",
"downshift": "^5.0.5",
"fuzzaldrin": "^2.1.0",
"lodash": "^4.17.21",
"react-spring": "^8.0.27",
"react-textarea-autosize": "^7.1.2",
"react-use-measure": "^2.0.4",
"styled-system": "^5.1.5"
},
"peerDependencies": {
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"scripts": {
"clean": "rimraf dist",
"start": "npx styleguidist server",
"test": "jest --config jest/config.js",
"test:watch": "npm run test -- --watch",
"prepare": "npm run build",
"build:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel src -d dist/cjs --extensions '.ts,.tsx' --ignore '**/*.test.tsx','**/*.test.ts' && tsc --emitDeclarationOnly --declarationDir dist/cjs -p .",
"build:esm": "cross-env NODE_ENV=production BABEL_ENV=esm babel src -d dist/esm --extensions '.ts,.tsx' --ignore '**/*.test.tsx','**/*.test.ts' && tsc --emitDeclarationOnly --declarationDir dist/esm -p .",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"docs": "npx styleguidist build",
"lint": "eslint --fix \"src/**/*.{ts,tsx}\" && prettier --write \"src/**/*.{ts,tsx,md,mdx,json}\"",
"validate": "eslint \"src/**/*.{ts,tsx}\" && prettier --list-different \"src/**/*.{ts,tsx,md,mdx,json}\" && tsc --noEmit -p ."
},
"repository": {
"type": "git",
"url": "https://github.com/panther-labs/pounce"
},
"bugs": {
"url": "https://github.com/panther-labs/pounce/issues"
},
"homepage": "https://github.com/panther-labs/pounce#readme",
"author": "Panther Labs",
"license": "MIT",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^10.0.0",
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^10.4.7",
"@testing-library/user-event": "^13.5.0",
"@types/jest-axe": "^3.5.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-loader": "^8.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^3.0.0",
"jest": "^26.6.3",
"jest-axe": "^3.5.0",
"jest-emotion": "^10.0.32",
"jest-extended": "^0.11.5",
"lint-staged": "^10.1.0",
"mockdate": "^3.0.2",
"prettier": "^2.0.5",
"react": "^16.11.0",
"react-docgen-typescript": "^1.16.3",
"react-dom": "^16.11.0",
"react-styleguidist": "^11.1.7",
"rimraf": "^2.6.3",
"typescript": "^3.9.5",
"webpack": "^4.42.1"
}
}