-
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) · 859 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 859 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": "adonis-app",
"version": "3.2.0",
"main": "server.js",
"scripts": {
"dev": "nodemon --watch app --watch bootstrap --watch config --watch .env -x node server.js",
"start": "node server.js",
"lint": "standard"
},
"author": "",
"license": "MIT",
"description": "",
"private": true,
"dependencies": {
"adonis-ace": "^3.0.5",
"adonis-auth": "^1.0.5",
"adonis-commands": "^2.1.3",
"adonis-fold": "^3.0.3",
"adonis-framework": "^3.0.7",
"adonis-lucid": "^3.0.12",
"adonis-middleware": "^1.0.10",
"adonis-websocket": "^1.0.2",
"mysql": "^2.12.0",
"standard": "^8.6.0",
"youch": "^1.0.1"
},
"standard": {
"global": [
"use",
"make"
]
},
"autoload": {
"App": "./app"
},
"devDependencies": {
"nodemon": "^1.11.0",
"standard": "^8.6.0"
}
}