forked from clayfish/sdk-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 863 Bytes
/
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
{
"name": "sdk-demos",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "cd client && npm install && npm run build",
"link-sdk": "yalc link @rtsdk/topia",
"unlink-sdk": "yalc remove @rtsdk/topia",
"server": "node server/index.js",
"client": "npm start --prefix client",
"start": "concurrently \"npm run server\" \"npm run client\""
},
"engines": {
"node": "18.13.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@google-cloud/local-auth": "^2.1.1",
"@rtsdk/topia": "^0.0.31",
"axios": "^1.2.1",
"body-parser": "^1.20.1",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"googleapis": "^110.0.0",
"react-player": "^2.11.0",
"yalc": "^1.0.0-pre.53"
}
}