This repository was archived by the owner on Jan 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 KB
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
{
"name": "nuxt-sails",
"private": true,
"version": "0.0.0",
"description": "a Sails application",
"keywords": [],
"dependencies": {
"@nuxtjs/axios": "~5.6.0",
"async": "~3.1.0",
"axios": "~0.21.1",
"cross-env": "~6.0.3",
"lodash": "~4.17.19",
"nuxt": "~2.10.2",
"sails": "~1.2.3",
"sails-hook-orm": "~2.1.1",
"sails-hook-sockets": "~2.0.0",
"sails.io.js": "~1.2.1",
"socket.io": "~2.3.0",
"vue": "~2.6.10",
"vue-server-renderer": "~2.6.10",
"vue-socket.io": "~3.0.7",
"vue-template-compiler": "~2.6.10",
"vuetify": "~2.1.5"
},
"devDependencies": {
"@nuxtjs/vuetify": "^1.9.0",
"ajv": "~6.10.2",
"eslint": "~6.5.1",
"stylus": "~0.54.7",
"stylus-loader": "~3.0.2"
},
"scripts": {
"build": "nuxt build",
"start": "npm run build && cross-env NODE_ENV=production node app.js",
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 && echo '✔ Your code looks good.'",
"custom-tests": "echo \"(No other custom tests yet.)\" && echo",
"debug": "node debug app.js",
"dev": "node app.js --development"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/AngelMunoz/sails-nuxt.git"
},
"author": "Angel D. Munoz",
"license": "MIT",
"engines": {
"node": "8"
}
}