-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.01 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "zerberus",
"version": "1.0.0",
"description": "Software for a robot to chase racoons in your garden",
"type": "module",
"scripts": {
"frontend:dev": "vite",
"start": "concurrently -k 'npm:start-robot' 'npm:start-camera'",
"start-robot": "sudo PATH=$PATH NODE_ENV=production bash -c 'npx ts-node robot | tee robot.log'",
"start-camera": "cd image_recognition && python3 use_classifier.py > ../camera.log",
"simulator": "ts-node robot",
"lint": "eslint . --fix",
"build": "npm run build:types && npm run build:frontend",
"build:types": "tsc -t es6 --moduleResolution node --outDir frontend types.ts && prettier -w ./frontend/types.js",
"build:frontend": "vite build",
"test": "vitest --run",
"test:watch": "vitest",
"update": "npx -y npm-check-updates -du"
},
"keywords": [
"rackoon",
"self-driving car",
"wild thumper",
"robot"
],
"engines": {
"node": ">= 18"
},
"repository": {
"url": "https://github.com/jschirrmacher/zerberus.git"
},
"author": "",
"license": "MIT",
"dependencies": {
"concurrently": "9.0.1",
"express": "4.21.1",
"i2c-bus": "5.2.3",
"pigpio": "3.3.1",
"pinia": "^2.2.5",
"readline": "1.3.0",
"sass": "1.80.6",
"socket.io": "4.8.1",
"socket.io-client": "4.8.1",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"vue": "3.5.12"
},
"devDependencies": {
"@types/express": "5.0.0",
"@types/i2c-bus": "5.1.2",
"@types/socket.io": "3.0.2",
"@vitejs/plugin-vue": "5.1.4",
"@vitest/coverage-v8": "2.1.4",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.5.1",
"eslint": "9.9.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-vue": "9.30.0",
"jsdom": "25.0.1",
"node-fetch": "3.3.2",
"pre-commit": "1.2.2",
"prettier": "3.3.3",
"ts-node-dev": "2.0.0",
"typescript-eslint": "8.12.2",
"vite": "5.4.10",
"vitest": "2.1.4"
},
"pre-commit": [
"lint",
"test"
]
}