-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__package.json
44 lines (44 loc) · 1.54 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
{
"name": "graphscript-node",
"version": "0.3.2",
"description": "Comprehensive acyclic-graph based application architecture with microservices and networking",
"main": "dist/index.node.js",
"types": "dist/index.node.d.ts",
"scripts": {
"start": "tinybuild path=tinybuild.node.config.js && tinybuild && tinybuild path=tinybuild.core.config.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"
},
"keywords": [
"esbuild"
],
"author": "Joshua Brewster",
"license": "LGPL-3.0-or-later",
"dependencies": {
"better-sse": "~0.10.0",
"brainsatplay-math": "~0.1.0",
"bson-objectid": "~2.0.3",
"web-worker": "~1.2.0",
"ws": "~8.14.2"
},
"nodemonConfig": {
"env": {
"NODEMON": true
},
"ignore": [
"dist/",
".temp/"
]
},
"devDependencies": {
"@types/node": "~18.7.15",
"@types/ws": "^8.5.3"
}
}