This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.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
{
"name": "twilens",
"private": true,
"description": "Full-text search for your tweets",
"author": "Ciffelia <mc.prince.0203@gmail.com> (https://ciffelia.com/)",
"repository": "github:ciffelia/twilens",
"homepage": "https://github.com/ciffelia/twilens#readme",
"bugs": "https://github.com/ciffelia/twilens/issues",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --verbose --parallel --topological-dev run build",
"start:api": "yarn workspace @twilens/api start",
"start:web": "yarn workspace @twilens/web start",
"lint": "run-p --print-name --aggregate-output lint:eslint lint:prettier",
"lint:eslint": "eslint --ext .js,.ts,.vue .",
"lint:prettier": "prettier --check .",
"fix": "run-s --print-name fix:eslint fix:prettier",
"fix:eslint": "eslint --fix --ext .js,.ts,.vue .",
"fix:prettier": "prettier --write .",
"postinstall": "husky install",
"g:tsc": "cd $INIT_CWD && tsc"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint",
"*.{js,ts,vue,json,yml,md}": "prettier --check"
},
"dependencies": {
"typescript": "~4.3.5"
},
"devDependencies": {
"@types/node": "^14.17.9",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"npm-run-all": "^4.1.5",
"pinst": "^2.1.6",
"prettier": "^2.3.2"
}
}