forked from suiet/suiet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "@suiet/monorepo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"workspaces": [
"packages/chrome",
"packages/core"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
},
"scripts": {
"start": "npm run dev:chrome",
"build": "run-s build:chrome",
"dev:chrome": "npm run dev -w @suiet/chrome-ext",
"build:chrome": "npm run build -w @suiet/chrome-ext",
"test:chrome": "npm run test -w @suiet/chrome-ext",
"prettier": "prettier --write --ignore-unknown .",
"test": "run-p test:chrome",
"lint": "eslint --ext=.js,.js,.tsx,.ts .",
"lint:fix": "eslint --fix --ext=.js,.js,.tsx,.ts .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suiet/suiet.git"
},
"author": "",
"bugs": {
"url": "https://github.com/suiet/suiet/issues"
},
"homepage": "https://github.com/suiet/suiet#readme",
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{jsx?,tsx?}": "eslint --fix"
}
}