-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
{
"name": "biscord",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel start-client start-server",
"start-server": "cd server && npm start",
"start-client": "cd client && npm start",
"postinstall": "npm-run-all --parallel install-client install-server",
"install-server": "cd server && npm i",
"install-client": "cd client && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supertramps/biscord.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/supertramps/biscord/issues"
},
"homepage": "https://github.com/supertramps/biscord#readme",
"dependencies": {
"@material-ui/icons": "^4.11.2",
"@progresso/react-giphy-picker-https": "^1.3.4",
"@types/react-router": "^5.1.14",
"cors": "^2.8.5",
"express": "^4.17.1",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"react-giphy-searchbox": "^1.5.4",
"socket.io": "^4.0.1",
"superagent": "^6.1.0"
},
"devDependencies": {
"@types/superagent": "^4.1.10"
}
}