-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.02 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "singularity",
"version": "0.1.0",
"main": "server.js",
"scripts": {
"start": "echo \"\\033[31mWARN: 'start' will be depreciated soon. Instead use 'npm run serve'\" && npm run serve",
"dev": "echo \"\\033[31mWARN: 'dev' will be depreciated soon. Instead use 'npm run serve:dev'\" && npm run serve:dev",
"serve:dev": "nodemon --watch app --watch bootstrap --watch config --watch .env -x node server.js",
"serve": "node server.js",
"lint": "standard",
"test": "mocha --recursive test"
},
"author": "Harvey Bastidas <[email protected]> (http://dev.ingeni-us.com:3338)",
"license": "SEE LICENCE IN <s_license.txt>",
"description": "This repo is the pre-configured project structure to be used for creating ambitious web servers using AdonisJs.",
"private": true,
"dependencies": {
"admin-lte": "^2.4.2",
"adonis-ace": "^3.0.7",
"adonis-auth": "^1.0.5",
"adonis-commands": "^2.1.5",
"adonis-fold": "^3.0.3",
"adonis-framework": "^3.0.14",
"adonis-lucid": "^3.0.16",
"adonis-middleware": "^1.0.11",
"adonis-websocket": "^1.0.3",
"bower": "^1.8.2",
"debug": "^3.0.1",
"ionicons": "^3.0.0",
"js-sha256": "^0.9.0",
"json-size": "^1.0.0",
"openpgp": "^2.6.2",
"request": "^2.82.0",
"sqlite3": "3.1.10",
"youch": "^2.0.4"
},
"standard": {
"global": [
"use",
"make"
]
},
"autoload": {
"App": "./app"
},
"devDependencies": {
"babel-core": "^6.26.0",
"chai": "^4.1.2",
"formats": "^0.5.5",
"mocha": "^3.5.3",
"nodemon": "^1.12.1",
"raw": "^0.1.4",
"standard": "^10.0.1",
"test": "^0.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harveybc/singularity.git"
},
"keywords": [
"p2p",
"optimization",
"blockchain",
"decentralized",
"automation"
],
"bugs": {
"url": "https://github.com/harveybc/singularity/issues"
},
"homepage": "https://github.com/harveybc/singularity#readme",
"engines": {
"node": ">=4.2.4"
}
}