-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "@snek-at/functions",
"version": "0.0.71",
"main": "dist/client/index.js",
"browser": "dist/client/index.browser.js",
"types": "dist/client/index.d.ts",
"type": "module",
"bin": {
"snek-functions": "./dist/server/cli/index.js",
"sf": "./dist/server/cli/index.js"
},
"scripts": {
"test": "jest",
"build": "tsc",
"cli": "node dist/server/cli/index.js",
"example-init": "yarn cli init -f example/my-example-project/src/functions",
"example-build": "yarn cli build -f example/my-example-project/src/functions",
"example-server": "yarn cli server -f example/my-example-project/src/functions --watch"
},
"dependencies": {
"@snek-at/functions": "^0.0.40",
"@snek-at/snek-api-client": "*",
"@swc/core": "^1.2.183",
"@types/express": "^4.17.13",
"commander": "^9.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.0",
"form-data": "^4.0.0",
"graphql": "^16.4.0",
"graphql-helix": "^1.12.0",
"isomorphic-fetch": "^3.0.0",
"minimatch": "^5.1.0",
"node-fetch": "^3.2.4",
"nodemon": "^2.0.16",
"patch-package": "^6.4.7",
"regenerator-runtime": "^0.13.9",
"serverless-http": "^3.0.1",
"typescript": "^4.8.3"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.30",
"chokidar": "^3.5.3",
"jest": "^28.0.2",
"patch-package": "^6.4.7",
"serverless-offline": "^8.8.0",
"serverless-plugin-ifelse": "^1.0.7",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0"
},
"files": [
"dist"
]
}