-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "nuxt-express",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "yarn lint:js",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"@nuxt/http": "latest",
"ant-design-vue": "^1.7.8",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"express": "latest",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.2",
"nuxt": "latest",
"passport": "^0.5.2",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sqlite3": "^5.0.2",
"vue": "^2.6.14"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.17.0",
"@nuxtjs/eslint-config": "^9.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-unicorn": "^39.0.0",
"sass": "^1.49.11",
"sass-loader": "^10.2.1"
}
}