-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "apiapi",
"version": "1.0.0",
"description": "My astonishing Nuxt.js project",
"author": "Jefwillems",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"dependencies": {
"@nuxtjs/axios": "^5.12.1",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/proxy": "^1.3.3",
"axios": "^0.19.2",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"consola": "^2.15.0",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"lodash": "^4.17.19",
"mongoose": "^5.9.27",
"morgan": "^1.10.0",
"nuxt": "^2.14.1",
"nuxt-i18n": "^6.13.7",
"papaparse": "^5.3.0",
"redis": "^3.0.2",
"swagger-ui-express": "^4.1.4",
"vue-json-component": "^0.3.2",
"vuex": "latest"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.2.0",
"@nuxtjs/vuetify": "^1.11.0",
"@types/express": "^4.17.7",
"@types/mongoose": "^5.7.35",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.1.0",
"eslint": "^6.8.0",
"eslint-plugin-nuxt": "^0.5.2",
"jest": "^25.5.4",
"nodemon": "^2.0.4",
"vue-jest": "^4.0.0-beta.5"
}
}