-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 2.94 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
{
"name": "@hack4impact-uiuc/bridge",
"version": "1.2.7",
"description": "Hack4Impact UIUC's Design System + React Component library",
"main": "dist/index.js",
"author": "Timothy Ko <[email protected]>",
"license": "MIT",
"keywords": [
"hack4impact",
"hack4impact uiuc",
"react",
"components",
"component library",
"design system"
],
"scripts": {
"build": "NODE_ENV=production rollup -c && yarn build:types",
"build:types": "copyfiles -u 1 src/index.d.ts dist/types && copyfiles -u 1 src/utils/common.d.ts dist/types && copyfiles -u 1 src/components/*/index.d.ts dist/types && cp dist/types/index.d.ts dist/types/index.cjs.d.ts && cp dist/types/index.d.ts dist/types/index.umd.d.ts",
"prebuild": "rm -rf dist",
"lint": "eslint --ext .js,.jsx ./src",
"lint:fix": "eslint --ext .js,.jsx ./src --fix",
"test": "jest -- src",
"storybook": "start-storybook"
},
"files": [
"dist"
],
"types": "dist/types/index.d.ts",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.4",
"@types/node": "^13.13.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-polyfill": "^6.26.0",
"copyfiles": "^2.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.5.3",
"jest-axe": "^3.4.0",
"jest-styled-components": "^7.0.2",
"jest-transform-stub": "^2.0.0",
"react-test-renderer": "^16.13.1",
"rollup": "^2.7.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^3.1.1",
"rollup-pluginutils": "^2.8.2",
"typescript": "^3.9.6"
},
"dependencies": {
"@styled-system/prop-types": "^5.1.5",
"@styled-system/theme-get": "^5.1.2",
"@types/styled-components": "^5.1.0",
"@types/styled-system": "^5.1.9",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"styled-components": "^5.1.0",
"styled-system": "^5.1.5"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-is": "^16.12.0"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hack4impact-uiuc/bridge.git"
},
"bugs": {
"url": "https://github.com/hack4impact-uiuc/bridge/issues"
},
"homepage": "https://github.com/hack4impact-uiuc/bridge#readme"
}