-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.11 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
{
"name": "cornell-glue-ui",
"version": "0.1.61",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"description": "Glue UI is Cornell WebDev's centralized UI component library. It implements our design system and serves as a single source of truth for React components used within our projects.",
"scripts": {
"build": "npx rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"generate": "node ./util/create-component",
"prepublishOnly": "npm run build",
"build-storybook": "build-storybook",
"storybook:export": "npx chromatic --project-token=296231e129be --auto-accept-changes",
"chromatic": "npx chromatic --project-token=296231e129be --auto-accept-changes",
"update-link": "npm run build && npm rm cornell-glue-ui -g && npm link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cornell-webdev/glue-ui.git"
},
"keywords": [
"React",
"Cornell",
"WebDev",
"Glue UI",
"Glue",
"Component",
"Library",
"Rollup",
"Typescript",
"Storybook"
],
"author": "Cornell WebDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/cornell-webdev/glue-ui/issues"
},
"homepage": "https://github.com/cornell-webdev/glue-ui",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-query": ">=3.15.2",
"react-router-dom": ">=5",
"styled-components": ">=5"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@material-ui/utils": "^4.11.2",
"@mui/icons-material": "^5.0.1",
"@mui/material": "^5.0.2",
"@mui/styled-engine-sc": "^5.0.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-url": "^6.1.0",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/react": "^6.3.8",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@types/jest": "^24.9.1",
"@types/react": "^16.14.14",
"@types/react-dom": "^16.9.14",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"chromatic": "^6.0.5",
"express": "^4.17.1",
"history": "^5.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "2.4.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-query": "^3.15.2",
"react-router-dom": "^5.3.0",
"rollup": "^2.56.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-import-css": "^3.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-typescript2": "^0.29.0",
"sass-loader": "^10.2.0",
"storybook-addon-react-docgen": "^1.2.42",
"styled-components": "^5.3.1",
"ts-jest": "^26.5.6",
"typescript": "^4.4.2"
},
"dependencies": {
"react-device-detect": "^2.1.2",
"react-perfect-scrollbar": "^1.5.8"
}
}