This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
{
"name": "react-chatbox-component",
"version": "0.0.5",
"main": "dist/index.js",
"module": "dist/index.js",
"proxy": "http://localhost:5000",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/naazsibia/thejoybot.git"
},
"keywords": [
"chat component",
"react component",
"chat box"
],
"author": "Naaz Sibia, Niveditha Kani, Maryam Goharhani, Kana Hashimoto",
"license": "MIT",
"bugs": {
"url": "https://github.com/naazsibia/thejoybot/issues"
},
"homepage": "https://github.com/naazsibia/thejoybot#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-scripts": "1.1.4",
"react-test-renderer": "^16.3.2"
},
"peerDependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"scripts": {
"heroku-postbuild": "npm install --only=dev && npm i --s && yarn add react-scripts",
"start": "react-scripts start",
"build-examples": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__"
},
"dependencies": {
"@chakra-ui/react": "^1.1.2",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"cors": "^2.8.5",
"dotenv": "^4.0.0",
"framer-motion": "^3.2.0",
"react-md-spinner": "^0.4.0",
"react-soundcloud-player": "^1.1.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}