-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 856 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "discord-template",
"private": true,
"version": "1.2",
"description": "A quickstart Phaser template for creating Discord Activities",
"scripts": {
"dev": "npm run client-dev & npm run server-dev",
"client-dev": "cd \"./client\" && npm run dev",
"server-dev": "cd \"./server\" && npm run dev",
"postinstall": "npm run install-client && npm run install-server",
"install-client": "cd \"./client\" && npm install",
"install-server": "cd \"./server\" && npm install",
"client-build": "cd \"./client\" && npm run build",
"tunnel": "cloudflared tunnel --url http://localhost:3001"
},
"devDependencies": {
"cloudflared": "^0.5.3"
},
"author": "Phaser Studio Inc <support@phaser.io> (https://www.phaser.io)",
"license": "MIT",
"licenseUrl": "https://www.opensource.org/licenses/mit-license.php"
}