-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "@metaphor-xyz/scaffold",
"version": "1.3.1",
"description": "Linters, formatters, and generators for Metaphor projects",
"main": "src/index.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"lint": "node build/lint.js \"src/**/*.{ts,tsx,js,jsx}\"",
"fix": "node build/lint.js --fix \"src/**/*.{ts,tsx,js,jsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tbdao/config.git"
},
"author": "Metaphor",
"license": "MIT",
"bin": {
"eslint": "build/lint.js",
"eslint_d": "build/lint.js"
},
"bugs": {
"url": "https://github.com/tbdao/config/issues"
},
"homepage": "https://github.com/tbdao/config#readme",
"dependencies": {
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"command-line-args": "^5.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.0"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"typescript": "^4.4.3"
}
}