-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.95 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.95 KB
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
62
63
64
{
"name": "promcat",
"version": "1.0.0",
"description": "PromCat",
"private": true,
"scripts": {
"build": "nuxt build",
"start": "nuxt",
"start:staging": "API_URL=https://staging.api.promcat.io GOOGLE_ANALYTICS_ID=UA-40398182-26 BASE_URL=https://staging.promcat.io REPO_BRANCH=staging nuxt",
"serve": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:staged": "lint-staged",
"lint:fix": "npm run lint -- --fix",
"test": "jest --watch",
"test:unit:coverage": "jest --coverage",
"test:unit:updateSnapshot": "jest --updateSnapshot",
"test:e2e": "npm-run-all -pr start test:e2e:open",
"test:e2e:ci": "npm-run-all -pr serve test:e2e:run",
"test:e2e:open": "cypress open",
"test:e2e:run": "cypress run"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"dependencies": {
"@nuxtjs/axios": "^5.9.5",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@nuxtjs/sitemap": "^2.0.1",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/svg": "^0.1.6",
"bootstrap": "^4.4.1",
"bootstrap-vue": "^2.7.0",
"ini": ">=1.3.6",
"minisearch": "^2.1.4",
"node-notifier": "^8.0.1",
"nuxt": "^2.12.0",
"nuxt-webfontloader": "^1.1.0",
"prismjs": "^1.19.0",
"showdown": "^1.9.1",
"showdown-highlightjs-extension": "^0.1.2"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/google-analytics": "^2.2.3",
"@vue/test-utils": "^1.0.0-beta.32",
"axios-mock-adapter": "^1.17.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"cypress": "^4.2.0",
"eslint": "^7.0.0",
"eslint-plugin-nuxt": ">=0.5.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"sass": "^1.55",
"sass-loader": "^10.1.1",
"vue-jest": "^4.0.0-0",
"vue2-animate": "^2.1.3"
}
}