-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.51 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.51 KB
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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:offline": "node --max-old-space-size=4096 node_modules/serverless/bin/serverless offline start --noTimeout",
"test": "jest",
"logs": "sls logs -f echo",
"logs:watch": "sls logs -f echo -t",
"deploy": "sls deploy",
"deploy:function": "sls deploy function -f echo",
"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",
"publish:local": "npm run gql:types && npx apollo service:push",
"gql:types": "node scripts/bundleSchema && npx graphql-codegen",
"key:gen": "ssh-keygen -t rsa -P \"\" -b 2048 -m PEM -f jwt.key && openssl rsa -in jwt.key -pubout -outform PEM -out jwt.key.pub"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@picast-app/db": "^2.15.0",
"apollo": "^2.31.1",
"apollo-server-lambda": "^2.19.0",
"axios": "^0.21.1",
"graphql": "^15.4.0",
"jsonwebtoken": "^8.5.1",
"ms": "^2.1.2",
"source-map-support": "^0.5.19"
},
"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",
"@graphql-codegen/cli": "^1.19.1",
"@graphql-codegen/typescript": "^1.17.11",
"@types/jest": "^26.0.23",
"@types/ms": "^0.7.31",
"@types/node": "^14.14.7",
"@types/uuid": "^8.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",
"chalk": "^4.1.1",
"ddbjs": "^0.17.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"serverless": "^2.11.1",
"serverless-offline": "^7.0.0",
"serverless-webpack": "^5.3.5",
"ts-jest": "^26.5.6",
"ts-loader": "^8.0.11",
"typescript": "^4.4.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
}
}