This repository has been archived by the owner on Jul 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
{
"name": "ddradar-meetup",
"version": "0.0.1",
"description": "DDR meetup",
"repository": "https://github.com/ddradar/meetup.git",
"author": "nogic <24802730+nogic1008@users.noreply.github.com>",
"license": "MIT",
"private": true,
"workspaces": [
"client",
"core",
"functions"
],
"scripts": {
"build": "run-p \"run:* {1}\" -- build",
"fix": "run-p fix:*",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"lint:prettier": "prettier --ignore-path .gitignore -l \"**/*.{json,yaml,yml,js,ts,vue}\"",
"run:client": "yarn workspace @ddradar/meetup-client",
"run:core": "yarn workspace @ddradar/meetup-core",
"run:func": "yarn workspace @ddradar/meetup-functions",
"test": "run-s \"run:* {1}\" -- test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yaml,yml}": "prettier --write"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"firebase-tools": "^9.3.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
}
}