-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "adonuxt",
"version": "1.0.0",
"author": "",
"description": "",
"license": "MIT",
"private": true,
"main": "server.js",
"scripts": {
"serve:dev": "npm run dev",
"dev": "nodemon --watch app --watch bootstrap --watch config --watch .env -x node server.js",
"build": "node ./ace nuxtbuild",
"start": "cross-env NODE_ENV=production node server.js",
"precommit": "npm run lint",
"lint": "standard && eslint --ext .js,.vue resources/"
},
"dependencies": {
"@adonisjs/ace": "^4.0.7",
"@adonisjs/auth": "^2.0.10",
"@adonisjs/bodyparser": "^1.0.8",
"@adonisjs/cors": "^1.0.2",
"@adonisjs/fold": "^4.0.5",
"@adonisjs/framework": "^4.0.27",
"@adonisjs/ignitor": "^1.0.14",
"@adonisjs/lucid": "^4.0.22",
"@adonisjs/session": "^1.0.19",
"@adonisjs/shield": "^1.0.4",
"@nuxtjs/axios": "^5.4.1",
"cross-env": "^3.1.4",
"font-awesome": "^4.7.0",
"nuxt": "latest",
"nuxt-buefy": "^0.1.0",
"pg": "^7.4.3",
"postcss-custom-properties": "^8.0.6",
"sass-loader": "^7.1.0",
"standard": "^8.6.0",
"vue-the-mask": "^0.11.1",
"youch": "^2.0.4"
},
"standard": {
"global": [
"use",
"make"
]
},
"autoload": {
"App": "./app"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"node-sass": "^4.11.0",
"nodemon": "^1.11.0",
"standard": "^8.6.0",
"webpack": "^4.20.2",
"webpack-dev-server": "^3.2.1"
}
}