forked from IBM/browser-functions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.94 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
{
"name": "browser-functions",
"version": "1.0.0",
"description": "Functions as a service, executed by a browser",
"main": "index.js",
"scripts": {
"start": "concurrently \"tsc --project server/tsconfig.json -w\" \"nodemon dist/server.js\" | pino-pretty -t SYS:standard -i hostname",
"start:prod": "NODE_ENV=production node dist/server.js",
"build": "yarn build:server && next build ui",
"build:server": "tsc --project ./server/ && cp server/controller.html dist/controller.html"
},
"repository": {
"type": "git",
"url": "[email protected]/IBM/browser-functions.git"
},
"nodemonConfig": {
"ignore": [
"functions_root/*"
]
},
"contributors": [
"Toby Kurien <[email protected]>",
"Richard Young <[email protected]>"
],
"license": "Apache-2.0",
"dependencies": {
"@blueprintjs/core": "^3.36.0",
"@monaco-editor/react": "^3.7.2",
"@types/react": "^17.0.0",
"body-parser": "1.18.3",
"chokidar": "3.2.1",
"connect-timeout": "1.9.0",
"esbuild": "^0.8.20",
"esinstall": "^0.4.0",
"events": "^3.2.0",
"express": "4.16.4",
"formidable": "1.2.1",
"monaco-editor": "^0.21.2",
"next": "^10.0.3",
"pino": "5.12.6",
"pouchdb-adapter-indexeddb": "^7.2.2",
"puppeteer": "1.18.1",
"puppeteer-firefox": "0.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rxjs": "^6.6.3",
"socket.io": "2.3.0",
"swr": "^0.3.9",
"tail": "2.0.2",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/formidable": "^1.0.31",
"@types/react": "^17.0.0",
"concurrently": "^5.3.0",
"nodemon": "2.0.4",
"pino-pretty": "3.2.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}