-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 794 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 794 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
{
"name": "blitzc2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install:server": "cd server && npm install",
"install:client": "cd client && npm install",
"installdep": "npm install && npm run install:server && npm run install:client",
"start:client": "cd client && npm run dev",
"start:server": "cd server && npm run dev",
"start": "ts-node ./shell.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/msgpack-lite": "^0.1.8",
"@types/node": "^18.15.9",
"typescript": "^5.0.2"
},
"dependencies": {
"dotenv": "^16.0.3",
"firebase": "^10.11.0",
"msgpack-lite": "^0.1.26",
"ts-node": "^10.9.1"
}
}