-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 959 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 959 Bytes
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
{
"name": "typescript-starter",
"version": "1.0.0",
"description": "nitric typescript starter template",
"main": "index.js",
"private": true,
"license": "MIT",
"dependencies": {
"@nitric/sdk": "0.10.0",
"weighted": "^1.0.0"
},
"devDependencies": {
"@pulumi/aws": "^5.32.0",
"@pulumi/cloudflare": "^5.0.0",
"@pulumi/pulumi": "^3.58.0",
"dotenv": "^16.0.3",
"nodemon": "^2.0.20",
"serve": "^14.2.0",
"stmux": "^1.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"wait-port": "^1.0.1",
"yaml": "^2.2.1"
},
"scripts": {
"dev:functions": "nodemon -r dotenv/config ./index.ts",
"dev": "stmux -w always -e ERROR -M -m beep,system -- [ -t 'Nitric: Exit using ctrl^a+k' \"nitric start\" .. -t 'Functions' \"wait-port localhost:50051 && npm run dev:functions\" ]",
"deploy:lb": "ts-node ./infra/up.ts",
"destroy:lb": "ts-node ./infra/down.ts",
"game": "serve game/"
}
}