forked from adonisjs/adonis-rally
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.52 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
{
"name": "adonis-app",
"version": "3.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch app --watch bootstrap --watch config --watch .env -x node server.js",
"start": "node server.js",
"pretest": "ENV_PATH=.env.test ./ace migration:refresh",
"test": "node bin/test.js",
"lint": "standard app/{**,**/**}/*.js tests/{*,**/*}.js"
},
"standard": {
"globals": [
"make",
"use",
"describe",
"before",
"after",
"it",
"afterEach",
"beforeEach"
]
},
"author": "",
"license": "MIT",
"description": "",
"private": true,
"dependencies": {
"adonis-ace": "^3.0.4",
"adonis-auth": "^1.0.4",
"adonis-commands": "^2.1.2",
"adonis-fold": "^3.0.3",
"adonis-framework": "^3.0.7",
"adonis-lucid": "^3.0.10",
"adonis-mail-provider": "^2.0.2",
"adonis-middleware": "^1.0.9",
"adonis-validation-provider": "^3.0.4",
"mocha": "^3.2.0",
"mysql": "^2.12.0",
"node-exceptions": "^1.0.3",
"node-uuid": "^1.4.7",
"slug": "^0.9.1",
"standard": "^8.6.0",
"yargs": "^6.5.0"
},
"autoload": {
"App": "./app"
},
"devDependencies": {
"chai": "^3.5.0",
"co": "^4.6.0",
"co-fs": "^1.2.0",
"co-mocha": "^1.1.3",
"colors": "^1.1.2",
"globby": "^6.1.0",
"lodash": "^4.17.2",
"mailparser": "^0.6.1",
"mocha": "^3.2.0",
"ms": "^0.7.2",
"nodemon": "^1.11.0",
"sqlite3": "^3.1.8",
"standard": "^8.6.0",
"supertest": "^2.0.1",
"yargs": "^6.5.0"
}
}