-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (61 loc) · 1.91 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
{
"name": "tinybuildapp6569",
"version": "0.0.0",
"description": "Barebones esbuild and test node server implementation. For building",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"start": "concurrently \"tinybuild\" \"cd backend && node contentserver.js\" \"cd backend && node dataserver.js\"",
"build": "tinybuild build",
"serve": "tinybuild serve",
"init": "node tinybuild/init.js",
"concurrent": "concurrently \"npm run python\" \"npm start\"",
"dev": "npm run pip && npm i --save-dev concurrently && npm i --save-dev nodemon && npm run concurrent",
"startdev": "nodemon --exec \"node tinybuild.js\" -e ejs,js,ts,jsx,tsx,css,html,jpg,png,scss,txt,csv",
"python": "python python/server.py",
"pip": "pip install quart && pip install websockets",
"pwa": "npm i workbox-cli && workbox generateSW node_server/pwa/workbox-config.js && npm run build && npm start",
"electron": "electron ./electron",
"android": "npx cap open android",
"ios": "npx cap open ios",
"tauri": "tauri"
},
"keywords": [
"esbuild"
],
"author": "",
"license": "",
"devDependencies": {
"@types/react": "^18.3.3",
"@zenfs/core": "^0.12.10",
"@zenfs/dom": "^0.2.13",
"bootstrap": "^5.3.3",
"concurrently": "^8.2.2",
"device-decoder": "^0.8.42",
"esbuild-sass-plugin": "^3.3.1",
"graphscript-core": "^0.3.6",
"graphscript-database": "^0.3.31",
"graphscript-frontend": "^0.3.29",
"graphscript-router": "^0.3.31",
"graphscript-workers": "^0.3.18",
"howler": "^2.2.4",
"react": "^18.3.1",
"react-bootstrap": "^2.10.4",
"react-dom": "^18.3.1",
"react-feather": "^2.0.10",
"webgl-plot-utils": "^0.4.3",
"workercanvas": "^1.1.4"
},
"nodemonConfig": {
"env": {
"NODEMON": true
},
"ignore": [
"dist/",
".temp/"
]
},
"dependencies": {
}
}