-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.43 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
52
53
{
"name": "express-notes",
"version": "1.0.0",
"description": "An application for storing notes, built using node.js and nuxt.js",
"author": "Nathan Bland",
"private": true,
"homepage": "https://nathanbland.github.io/express-notes",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "node ./api/index.js",
"generate": "cross-env DEPLOY_ENV=GH_PAGES nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"predeploy": "npm run generate",
"deploy": "gh-pages -d dist"
},
"engines": {
"node": "8.9.4"
},
"dependencies": {
"@nuxtjs/auth": "^4.5.1",
"@nuxtjs/axios": "^5.0.0",
"body-parser": "^1.18.3",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"dayjs": "^1.6.7",
"element-ui": "^2.2.0",
"express": "^4.16.3",
"helmet": "^3.12.1",
"jwt-simple": "^0.5.1",
"marked": "^0.4.0",
"mongoose": "^5.1.4",
"morgan": "^1.9.0",
"nuxt": "^1.0.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.0",
"short-unique-id": "^1.1.1",
"uuid": "^3.2.1",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"cross-env": "^5.0.1",
"eslint": "^4.15.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.0.0",
"gh-pages": "^1.2.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.3"
}
}