-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "safetogo",
"version": "1.0.0",
"description": "Display the locations where Coronavirus cases have been reported",
"author": "Dr. Lau Cher Han",
"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",
"test": "jest"
},
"dependencies": {
"@nuxtjs/auth": "^4.9.0",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/pwa": "^3.0.0-0",
"@nuxtjs/toast": "^3.3.0",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"firebase": "^7.11.0",
"leaflet": "^1.6.0",
"nuxt": "^2.0.0",
"nuxt-leaflet": "0.0.21",
"vue2-google-maps": "^0.10.7",
"vue2-leaflet": "^2.5.2"
},
"devDependencies": {
"@nuxtjs/tailwindcss": "^1.4.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-jest": "^25.1.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"vue-jest": "^4.0.0-0"
}
}