-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 917 Bytes
/
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
{
"name": "doorbell-server",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"dev": "NODE_ENV=development nodemon src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build:deb": "bash scripts/build_deb.sh \"${npm_package_name}\" \"${npm_package_version}\""
},
"author": "Steffen",
"license": "UNLICENSED",
"engines": {
"node": ">=12"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/flat": "^5.0.1",
"@types/knex": "^0.16.1",
"@types/socket.io": "^2.1.13",
"@types/uuid": "^8.3.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"firebase-admin": "^9.6.0",
"flat": "^5.0.2",
"knex": "^0.95.4",
"socket.io": "^4.0.1",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2"
}
}