-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
145 lines (145 loc) · 4.96 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "react-sendbird-messenger",
"version": "0.1.0",
"private": true,
"main": "public/electron.js",
"build": {
"productName": "React SendBird Messenger",
"appId": "com.chnirt.react-sendbird-messenger",
"dmg": {
"contents": [
{
"x": 410,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets",
"output": "release"
},
"mac": {
"icon": "build/icon.png",
"category": "chnirt.react.sendbird.messenger"
},
"win": {
"icon": "build/icon.png"
}
},
"description": "Welcome to My React Sendbird Messenger App",
"author": "Chnirt",
"homepage": "./",
"dependencies": {
"@craco/craco": "^5.6.4",
"@sentry/integrations": "^5.23.0",
"@sentry/react": "^5.23.0",
"@sentry/tracing": "^5.23.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"antd": "^4.6.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"craco-antd": "^1.18.1",
"craco-less": "^1.17.0",
"electron-is-dev": "^1.2.0",
"emoji-mart": "^3.0.0",
"env-cmd": "^10.1.0",
"eslint": "^6.6.0",
"firebase": "^7.19.1",
"framer-motion": "^2.7.5",
"history": "^5.0.0",
"i18next": "^19.7.0",
"jest-config": "^26.4.2",
"moment": "^2.27.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-draggable": "^4.4.3",
"react-i18next": "^11.7.2",
"react-router-dom": "6.0.0-beta.0",
"react-scripts": "3.4.3",
"react-styleguidist": "^11.0.10",
"react-topbar-progress-indicator": "^4.1.0",
"sendbird": "^3.0.133",
"sendbird-calls": "^1.2.5",
"source-map-explorer": "^2.5.0",
"webpack": "4.42.0",
"webpack-bundle-analyzer": "^3.8.0"
},
"scripts": {
"generate:ssl": "mkcert -key-file key.pem -cert-file cert.pem",
"start:ssl": "HTTPS=true SSL_CRT_FILE=cert.pem SSL_KEY_FILE=key.pem yarn start",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"start": "craco start",
"start:desi": "env-cmd -f .env.design craco start",
"start:stag": "env-cmd -f .env.staging craco start",
"start:prod": "env-cmd -f .env.production craco start",
"start:ele": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron . \"",
"build": "CI= craco --max_old_space_size=4096 build",
"build:desi": "env-cmd -f .env.design craco build",
"build:stag": "env-cmd -f .env.staging craco build",
"build:prod": "env-cmd -f .env.production craco build",
"test": "craco test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006 -s public",
"build:storybook": "build-storybook -s public",
"prettier": "prettier \"src/**/*.{js,jsx,css}\"",
"format": "yarn prettier --write --ignore-unknown",
"lint": "eslint src",
"lint:fix": "yarn lint --fix --ignore-pattern storybook-static",
"ele:pack": "electron-builder --dir",
"ele:dist": "electron-builder",
"ele:mac": "electron-builder --mac",
"ele:win": "electron-builder --win",
"postinstall": "electron-builder install-app-deps"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/node-logger": "^6.0.21",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.0.21",
"babel-loader": "^8.1.0",
"chalk": "^4.1.0",
"concurrently": "^5.3.0",
"electron": "^10.1.5",
"electron-builder": "^22.9.1",
"husky": "^4.2.5",
"jest-canvas-mock": "^2.2.0",
"lint-staged": "^10.3.0",
"mini-css-extract-plugin": "^0.11.2",
"prettier": "^2.1.1",
"progress-bar-webpack-plugin": "^2.1.0",
"react-is": "^16.13.1",
"wait-on": "^5.2.0"
}
}