-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.88 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
55
56
57
58
59
60
61
{
"name": "client1",
"version": "1.0.0",
"description": "My wondrous Nuxt.js project",
"author": "Zyad Yasser",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon ./src/server/index.js --watch server",
"build": "nuxt build",
"build:arrange": "cp -r ./.nuxt/dist/* ./public/_nuxt && cp -r ./src/static/* ./public && cp -r ./.nuxt/* ./functions/.nuxt/",
"build:install": "cd ./functions && npm install && cd ../",
"build:clean": "rm -r ./public/_nuxt && rm -r ./public/_nuxt",
"deploy:firebase": "firebase deploy --only hosting,functions",
"start": "cross-env NODE_ENV=production node server/index.js",
"deploy": "node ./scripts/deploy.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"lint-staged": {
"*.{js,vue}": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/pwa": "^3.0.0-0",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"node-sass": "^4.13.1",
"nuxt": "^2.0.0",
"nuxt-buefy": "^0.3.2",
"nuxt-graphql-request": "^1.0.2",
"nuxt-property-decorator": "^2.5.1",
"sass-loader": "^8.0.2",
"vuex-class": "^0.3.2"
},
"devDependencies": {
"@nuxt/typescript-build": "^0.6.0",
"@nuxtjs/eslint-config-typescript": "^1.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"husky": "^4.0.0",
"jest": "^24.1.0",
"lint-staged": "^10.0.0",
"nodemon": "^1.18.9",
"rimraf": "^3.0.2",
"ts-jest": "^25.0.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-standard-plus": "^1.0.0",
"vue-jest": "^4.0.0-0"
}
}