-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.97 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
{
"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.1.2",
"express": "4.21.2",
"i2c-bus": "5.2.3",
"pigpio": "3.3.1",
"pinia": "^3.0.1",
"readline": "1.3.0",
"sass": "1.85.0",
"socket.io": "4.8.1",
"socket.io-client": "4.8.1",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"vue": "3.5.13"
},
"devDependencies": {
"@types/express": "5.0.0",
"@types/i2c-bus": "5.1.2",
"@vitejs/plugin-vue": "5.2.1",
"@vitest/coverage-v8": "3.0.6",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.7.0",
"eslint": "9.9.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-vue": "9.32.0",
"jsdom": "26.0.0",
"node-fetch": "3.3.2",
"pre-commit": "1.2.2",
"prettier": "3.5.2",
"ts-node-dev": "2.0.0",
"typescript-eslint": "8.24.1",
"vite": "6.1.1",
"vitest": "3.0.6"
},
"pre-commit": [
"lint",
"test"
]
}