-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
35 lines (35 loc) · 842 Bytes
/
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
{
"name": "nuxt-firebase-example",
"version": "1.0.0",
"description": "Nuxt.js project",
"author": "Takuma HANATANI<[email protected]>",
"private": true,
"scripts": {
"dev": "nuxt",
"start": "nuxt start",
"clean": "rm -rf {.firebase,.nuxt}",
"build": "nuxt build",
"format": "prettier './app/**/*.{js,vue}' --write",
"deploy": "make firebase-deploy"
},
"dependencies": {
"autolinker": "^1.6.0",
"core-js": "3",
"dayjs": "^1.8.2",
"firebase": "^6.2.3",
"firebase-admin": "^6.0.0",
"firebase-functions": "^3.0.1",
"htmlspecialchars": "^1.0.5",
"lodash.clonedeep": "^4.5.0",
"nuxt": "^2.8.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"firebase-tools": "^8.2.0",
"prettier": "^1.15.1"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}