forked from benminer/cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "cloud-chat",
"description": "Serverless Cloud chat application example",
"private": true,
"type": "module",
"main": "index.ts",
"scripts": {
"cloud:build": "next build",
"cloud:dev": "next dev",
"lint": "next lint",
"deploy": "cloud deploy production",
"preview:deploy": "cloud deploy --type preview ${PREVIEW_INSTANCE_NAME}",
"preview:delete": "cloud delete ${PREVIEW_INSTANCE_NAME}",
"test": "cloud test"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"jsonwebtoken": "^8.5.1",
"ksuid": "^3.0.0",
"long": "^5.2.3",
"next": "^12.0.10",
"nodes2ts": "^2.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@jest/globals": "^27.2.5",
"@serverless/cloud": "^2.0.0",
"@types/jest": "^27.0.2",
"bootstrap": "^5.0.2",
"clsx": "^1.1.1",
"eslint": "^8.8.0",
"eslint-config-next": "^12.0.10",
"lib0": "^0.2.42",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-bootstrap": "^2.0.0-beta.4",
"react-div-100vh": "^0.7.0",
"react-dom": "^17.0.2",
"react-leaflet": "^3.2.0",
"valtio": "^1.2.4"
},
"serverless": {
"org": "serverless",
"app": "chat",
"params": {
"TOKEN_SECRET": "Secret for signing authentication tokens. Set to any random string."
}
}
}