-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1001 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1001 Bytes
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
{
"name": "@larcjs/examples",
"version": "1.0.1",
"description": "LARC Examples - Demo applications and usage examples for the PAN messaging system",
"type": "module",
"scripts": {
"dev": "node server.mjs",
"start": "node server.mjs",
"api-legacy": "node api-legacy.js",
"api": "node apps/api.js",
"auth": "node auth.js",
"sse": "node sse.js",
"backends": "concurrently \"npm:api-legacy\" \"npm:api\" \"npm:auth\" \"npm:sse\""
},
"keywords": [
"larc",
"pan",
"examples",
"demos",
"tutorials"
],
"author": "Chris Robison",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/larcjs/examples.git"
},
"bugs": {
"url": "https://github.com/larcjs/examples/issues"
},
"homepage": "https://github.com/larcjs/examples#readme",
"dependencies": {
"mysql2": "^3.6.5",
"better-sqlite3": "^9.2.2",
"bcryptjs": "^2.4.3"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}