-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.2 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
{
"name": "rescueapp.es",
"version": "1.0.0",
"description": "rescueapp.es website",
"author": "clund & jgmullor",
"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 --quiet --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --quiet --ignore-path .gitignore ."
},
"dependencies": {
"@nuxt/http": "^0.5.0",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@nuxtjs/recaptcha": "^0.6.2",
"@typeform/embed": "^0.16.0",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.11.0",
"express": "^4.16.4",
"nuxt": "^2.0.0",
"nuxt-cookie-control": "^1.8.1",
"nuxt-typeform": "0.0.1",
"vue-analytics": "^5.22.1"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"node-sass": "^4.13.1",
"nodemon": "^1.18.9",
"sass-loader": "^8.0.2",
"cross-env": "^5.2.0"
}
}