-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.58 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
{
"name": "site-audit-seo-viewer",
"version": "5.2.0",
"description": "Web service for SEO site audit: crawl site, Lighthouse all pages, view public reports in browser. 100+ metrics for each page.",
"author": "Stanislav Popov <[email protected]>",
"homepage": "https://github.com/viasite/site-audit-seo-viewer",
"private": true,
"scripts": {
"dev": "cross-env SERVER_URL=http://localhost:5301 HOST=0.0.0.0 PORT=5302 nuxt",
"dev-popstas": "cross-env SERVER_URL=http://popstas-server:5301 HOST=0.0.0.0 PORT=5302 nuxt",
"dev-popstas-prod": "cross-env SCAN_DEFAULT_MAX_REQUESTS=10 FRONTEND_URL=https://site-audit.popstas.ru SERVER_URL=https://site-audit-server.popstas.ru HOST=0.0.0.0 PORT=5302 nuxt",
"dev-popstas-prod-stable": "cross-env SCAN_DEFAULT_MAX_REQUESTS=10 FRONTEND_URL=https://site-audit.popstas.ru SERVER_URL=https://site-audit-server-stable.popstas.ru HOST=0.0.0.0 PORT=5302 nuxt",
"dev-no-interface": "cross-env NO_NAVIGATION=1 NO_LOGIN=1 NO_FOOTER=1 NO_FILTERS=1 NO_TOUR=1 SERVER_URL=\"\" HOST=0.0.0.0 PORT=5302 nuxt",
"dev-clean": "nuxt",
"build": "nuxt build",
"deploy-prod": "bash scripts/deploy.sh",
"deploy-dev": "bash data/deploy-dev.sh",
"deploy": "npm run deploy-prod && npm run deploy-dev",
"start": "nuxt start",
"generate": "nuxt generate -c nuxt.config.prod.js",
"generate-clean": "nuxt generate",
"generate-dev": "nuxt generate -c data/nuxt.config.dev.js",
"version": "npm run changelog && git add CHANGELOG.md",
"postversion": "git push --tags && npm run release",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "conventional-github-releaser -p angular && npm run deploy && npm run dev-popstas-prod",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/pwa": "^3.3.3",
"element-ui": "^2.13.2",
"firebase": "^8.2.1",
"firebaseui": "^4.7.1",
"js-yaml": "^3.13.1",
"json-query": "^2.2.2",
"lodash": "^4.17.11",
"nuxt": "^2.14.6",
"nuxt-i18n": "^6.15.1",
"nuxt-socket-io": "^1.1.13",
"sass": "^1.51.0",
"sass-loader": "^7.3.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-vue": "^0.3.3",
"style-loader": "^0.23.1",
"vue-awesome": "^3.2.0",
"vue-chat-scroll": "^1.4.0",
"vue-style-loader": "^4.1.2",
"vue-tables-2": "^1.6.25",
"vue-tour": "^1.5.0",
"vuedraggable": "^2.24.3",
"vuex-persistedstate": "^3.1.0",
"xlsx": "^0.15.6"
},
"devDependencies": {
"@nuxtjs/style-resources": "^1.0.0"
}
}