-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "vonk-fence",
"version": "0.1.0",
"private": true,
"author": "Avans StationX <[email protected]>",
"contributors": [
"Niels van de Pas <[email protected]>",
"Mick Janssen <[email protected]>",
"Renée van der Maden <[email protected]>",
"Patrick Gütlich <[email protected]>"
],
"license": "MIT",
"scripts": {
"dev": "./start.sh",
"dev:remote": "./start.sh --remote",
"dev:frontend": "./start.sh --frontend-only",
"build": "./build.sh",
"start": "./start.sh --production",
"lint": "next lint",
"format": "prettier . --write",
"generate:protos": "./protos.sh",
"generate:protos:python": "./protos.sh --include-python",
"generate:protos:build": "./protos.sh --production"
},
"dependencies": {
"express": "^4.19.2",
"frame-stream": "^4.0.1",
"next": "14.1.4",
"protobufjs": "~7.2.6",
"puppeteer-core": "^22.6.0",
"react": "^18",
"react-dom": "^18",
"serialport": "^12.0.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.1.3",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"protobufjs-cli": "~1.1.2",
"ts-node": "^10.9.2",
"typed-emitter": "^2.1.0",
"typescript": "^5"
}
}