forked from aws/amazon-chime-sdk-component-library-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.82 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
{
"name": "amazon-chime-sdk-component-library-react",
"version": "2.1.1",
"description": "Amazon Chime SDK Component Library - React",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git://github.com/aws/amazon-chime-sdk-component-library"
},
"types": "lib/index.d.ts",
"scripts": {
"build": "rollup -c",
"check": "node scripts/check-codestyle.js",
"release": "node scripts/release.js",
"prebuild:publish": "npm install && node scripts/prebuild.js --publish",
"build:publish": "npm run check && npm run build && npm run test ",
"postbuild:publish": "node scripts/postbuild.js",
"prebuild:release": "node scripts/prebuild.js",
"build:release": "npm install && npm run check && npm run build && npm run test ",
"postbuild:release": "node scripts/postbuild.js",
"start": "start-storybook -p 9009",
"test": "jest -c jest.config.js",
"deploy-storybook": "storybook-to-ghpages",
"build-storybook": "build-storybook",
"jest:integration": "jest -c jest-snapshot.config.js --verbose ./tst/snapshots/*",
"test:snapshots-path": "jest -c jest-snapshot.config.js --verbose",
"test:snapshots": "start-server-and-test start http-get://localhost:9009 jest:integration"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@popperjs/core": "^2.2.2",
"fast-memoize": "^2.5.2",
"react-popper": "^2.2.4",
"throttle-debounce": "^2.3.0",
"uuid": "^8.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@storybook/addon-a11y": "^6.1.17",
"@storybook/addon-docs": "^6.1.21",
"@storybook/addon-knobs": "^6.1.17",
"@storybook/addon-storysource": "^6.1.17",
"@storybook/addon-viewport": "^6.1.17",
"@storybook/addons": "^6.1.17",
"@storybook/react": "^6.1.21",
"@storybook/storybook-deployer": "^2.8.7",
"@storybook/theming": "^6.1.20",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.0",
"@types/classnames": "^2.2.10",
"@types/jest": "^25.2.1",
"@types/puppeteer": "^5.4.3",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.1",
"@types/react-test-renderer": "^17.0.1",
"@types/resize-observer-browser": "^0.1.3",
"@types/styled-components": "^5.1.0",
"@types/styled-system": "^5.1.9",
"@types/testing-library__react": "^10.0.1",
"@types/throttle-debounce": "^2.1.0",
"@types/uuid": "^7.0.3",
"add": "^2.0.6",
"amazon-chime-sdk-js": "^2.5.0",
"babel-loader": "^8.1.0",
"css-loader": "^2.1.1",
"jest": "^26.6.3",
"jest-image-snapshot": "^4.4.0",
"jest-puppeteer-docker": "^1.4.2",
"mini-css-extract-plugin": "^0.7.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"prompt-sync": "^4.2.0",
"puppeteer": "^2.1.1",
"react": "^17.0.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^17.0.1",
"react-is": "^17.0.0",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^2.6.3",
"rollup": "^2.26.3",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-typescript2": "^0.27.1",
"start-server-and-test": "^1.11.7",
"storybook": "^6.1.20",
"style-loader": "^0.23.1",
"styled-components": "^5.1.0",
"styled-system": "^5.1.5",
"themeprovider-storybook": "^1.7.1",
"ts-jest": "^26.5.2",
"ts-loader": "^6.0.2",
"typescript": "^4.2.1",
"url-loader": "^2.0.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2"
},
"peerDependencies": {
"amazon-chime-sdk-js": "^2.4.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.0.0",
"styled-system": "^5.1.5"
},
"prettier": {
"singleQuote": true
}
}