-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 KB
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
{
"name": "pi-eye-server",
"version": "1.0.0",
"description": "Server side of Pi-Eye",
"main": "./build/server.js",
"types": "./build/server.d.ts",
"scripts": {
"lint": "eslint ./**/*.ts",
"build": "tsc -b",
"coverage": "nyc npm test",
"prestart": "npm run build",
"start": "node ./build/driver.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pi-Eye/pi-eye-server.git"
},
"author": "Bwu1324",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Pi-Eye/pi-eye-server/issues"
},
"homepage": "https://github.com/Pi-Eye/pi-eye-server#readme",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"eslint": "^8.27.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@types/serve-favicon": "^2.5.3",
"argon2": "^0.30.2",
"camera-connection": "github:Pi-Eye/camera-connection",
"camera-interface": "github:Pi-Eye/camera-interface",
"client-connection-server": "github:Pi-Eye/client-connection-server",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"file-writer": "github:Pi-Eye/file-writer",
"https": "^1.0.0",
"node-stream-processor": "github:Pi-Eye/node-stream-processor",
"node-stream-processor-types": "github:Pi-Eye/node-stream-processor-types",
"notification-handler": "github:Pi-Eye/notification-handler",
"pi-eye-client": "github:Pi-Eye/pi-eye-client",
"serve-favicon": "^2.5.0",
"typed-emitter": "^2.1.0"
}
}