-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.96 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.96 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
49
50
51
52
53
54
55
56
{
"name": "sentient-senses",
"private": true,
"type": "module",
"workspaces": [
"frontend",
"backend"
],
"version": "1.0.0",
"description": "An art project running application on a headless Raspberry Pi, utilizing a Node.js backend and a p5.js frontend. The application will serve as a kiosk interface, providing an interactive experience through a web browser.",
"main": "index.js",
"dependencies": {
"acorn": "^8.14.1",
"acorn-walk": "^8.3.4",
"colorjs.io": "^0.5.2",
"dotenv": "^16.5.0",
"escodegen": "^2.1.0",
"esprima": "^4.0.1",
"estraverse": "^5.3.0",
"esutils": "^2.0.3",
"gifenc": "^1.0.3",
"i18next": "^19.9.2",
"i18next-browser-languagedetector": "^4.3.1",
"in": "^0.19.0",
"libtess": "^1.2.2",
"node-fetch": "^3.3.2",
"node-webcam": "^0.8.2",
"omggif": "^1.0.10",
"p5": "^2.0.1",
"pako": "^2.1.0",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"serialport": "^13.0.0",
"source-map": "^0.6.1",
"the": "^1.0.2",
"ws": "^8.18.2"
},
"devDependencies": {
"concurrently": "^9.1.2",
"ts-node": "^10.9.2",
"vite": "^6.3.5"
},
"scripts": {
"predev": "lsof -ti:3000 -sTCP:LISTEN | xargs -r kill -9; lsof -ti:5173 -sTCP:LISTEN | xargs -r kill -9",
"prestart": "lsof -ti:3000 -sTCP:LISTEN | xargs -r kill -9; lsof -ti:5173 -sTCP:LISTEN | xargs -r kill -9",
"start:frontend": "npm --prefix frontend run dev",
"start:backend": "npx ts-node backend/server.js",
"dev:backend": "nodemon backend/server.js",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"dev": "concurrently \"npm run dev:backend\" \"npm run start:frontend\"",
"postinstall": "npm install serialport"
},
"keywords": [],
"author": "",
"license": "ISC"
}