-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "sunstone",
"version": "0.0.1",
"description": "Sunstone Plugin Architecture",
"main": "index.js",
"scripts": {
"server-mon": "DEBUG=sunstone:* nodemon src/run.js",
"server": "NODE_TLS_REJECT_UNAUTHORIZED=0 ./bin/sunstone",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strangerlabs/sunstone.git"
},
"keywords": [
"plugin",
"architecture"
],
"author": "StrangerLabs",
"license": "MIT",
"bugs": {
"url": "https://github.com/strangerlabs/sunstone/issues"
},
"homepage": "https://github.com/strangerlabs/sunstone#readme",
"dependencies": {
"@trust/json-document": ">=0.1.3",
"body-parser": "^1.19.0",
"bunyan": "^1.8.10",
"callsite": "^1.0.0",
"debug": "^2.6.3",
"dotenv": "^4.0.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"lodash": "^4.17.15",
"memorystore": "^1.6.1",
"mkdirp": "^0.5.1",
"multer": "^1.4.2",
"node-fetch": "^1.7.1",
"uuid": "^3.3.3",
"uuid4": "^1.1.4",
"yargs": "^7.0.2"
},
"devDependencies": {
"nodemon": "^1.19.4"
}
}