-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
100 lines (100 loc) · 3.31 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "frontend",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "npm-run-all --parallel dev:back \"dev:front {@}\" --",
"dev:front": "vue-cli-service serve",
"dev:back": "cd server && yarn dev",
"dev:e2e": "vue-cli-service test:e2e --mode=development",
"build": "vue-cli-service build --modern",
"build:ci": "yarn build --report",
"lint:eslint": "eslint --fix",
"lint:stylelint": "stylelint --fix",
"lint:markdownlint": "markdownlint",
"lint:prettier": "prettier --write --loglevel warn",
"lint:all:eslint": "yarn lint:eslint --ext .js,.vue .",
"lint:all:stylelint": "yarn lint:stylelint \"src/**/*.{vue,scss}\"",
"lint:all:markdownlint": "yarn lint:markdownlint \"docs/*.md\" \"*.md\"",
"lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,css,scss,vue,html,md}\"",
"lint": "run-s lint:all:*",
"test:unit": "vue-cli-service test:unit",
"test:unit:file": "yarn test:unit --bail --findRelatedTests",
"test:unit:watch": "yarn test:unit --watch --notify --notifyMode change",
"test:unit:ci": "yarn test:unit --coverage --ci",
"test:e2e": "vue-cli-service test:e2e --headless",
"test": "run-s test:unit test:e2e",
"test:ci": "run-s test:unit:ci test:e2e",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"new": "hygen new",
"prisma": "cd server && yarn prisma",
"playground": "cd server && yarn playground"
},
"gitHooks": {
"pre-commit": "cross-env PRE_COMMIT=true lint-staged"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.x",
"@fortawesome/free-solid-svg-icons": "5.10.x",
"@fortawesome/vue-fontawesome": "0.1.x",
"auth0-js": "9.11.x",
"jwt-decode": "2.2.x",
"lodash": "4.17.x",
"normalize.css": "8.0.x",
"nprogress": "0.2.x",
"vue": "2.6.x",
"vue-apollo": "3.0.0-rc.2",
"vue-meta": "2.2.x",
"vue-router": "3.1.x"
},
"devDependencies": {
"@vue/cli-plugin-babel": "3.x",
"@vue/cli-plugin-e2e-cypress": "3.x",
"@vue/cli-plugin-eslint": "3.x",
"@vue/cli-plugin-unit-jest": "3.x",
"@vue/cli-service": "3.x",
"@vue/eslint-config-prettier": "5.x",
"@vue/eslint-config-standard": "4.x",
"@vue/test-utils": "1.0.0-beta.29",
"apollo-link-schema": "^1.2.4",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.x",
"babel-jest": "24.x",
"cross-env": "5.x",
"eslint": "5.x",
"eslint-plugin-graphql": "3.x",
"eslint-plugin-jest": "22.x",
"eslint-plugin-node": "9.x",
"eslint-plugin-unicorn": "9.x",
"eslint-plugin-vue": "5.x",
"graphql-tag": "^2.10.1",
"hygen": "4.x",
"imagemin-lint-staged": "0.x",
"jest-fetch-mock": "2.x",
"jest-transform-graphql": "2.x",
"lint-staged": "9.x",
"markdownlint-cli": "0.x",
"npm-run-all": "4.x",
"prettier": "1.x",
"sass": "1.x",
"sass-loader": "8.x",
"stylelint": "10.x",
"stylelint-config-css-modules": "1.x",
"stylelint-config-prettier": "5.x",
"stylelint-config-recess-order": "2.x",
"stylelint-config-standard": "18.x",
"stylelint-scss": "3.x",
"vue-cli-plugin-apollo": "0.x",
"vue-template-compiler": "2.x",
"vuepress": "0.x",
"webpack-bundle-analyzer": "3.x"
},
"engines": {
"node": ">=10.13.3",
"yarn": ">=1.0.0"
},
"workspaces": [
"server"
]
}