-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.2 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
{
"name": "socket",
"version": "1.0.0",
"description": "",
"main": ".eslintrc.js",
"private": true,
"scripts": {
"start:offline": "sls offline",
"logs": "sls logs -f episode",
"logs:watch": "sls logs -f episode -t",
"deploy": "sls deploy",
"prettier:check": "prettier --check \"./*.ts\" \"./**/*.ts\"",
"prettier:write": "prettier --write \"./*.ts\" \"./**/*.ts\"",
"eslint:check": "eslint . --ext .ts",
"eslint:write": "eslint . --ext .ts --fix",
"lint": "npm run eslint:check && npm run prettier:check",
"format": "npm run eslint:write && npm run prettier:write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/picast-app/socket.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/picast-app/socket/issues"
},
"homepage": "https://github.com/picast-app/socket#readme",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@picast-app/db": "^2.15.0",
"@picast-app/protocols": "^0.4.0",
"ddbjs": "^0.18.1",
"jsonwebtoken": "^8.5.1",
"snatchblock": "^0.8.0",
"typerpc": "^0.9.2",
"web-push": "^3.4.4"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/aws-lambda": "^8.10.64",
"@types/jsonwebtoken": "^8.5.4",
"@types/node": "^14.14.7",
"@types/web-push": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^4.8.0",
"@typescript-eslint/parser": "^4.8.0",
"babel-loader": "^8.2.1",
"babel-plugin-source-map-support": "^2.1.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"serverless": "^2.11.1",
"serverless-offline": "^6.8.0",
"serverless-webpack": "^5.3.5",
"source-map-support": "^0.5.19",
"ts-loader": "^8.0.11",
"typescript": "^4.3.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
}
}