-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "@de-liker/drts",
"version": "1.0.0",
"type": "module",
"description": "DE LIKER's TypeScript and React style guide",
"main": "eslint.config.js",
"repository": "https://github.com/de-liker/drts",
"author": "Qs-F <qsf@de-liker.com>",
"scripts": {
"publish": "changeset publish",
"lint": "eslint .",
"fmt": "eslint --fix .",
"test:publish:buildable:install": "npm install --prefix ./examples/basic",
"test:publish:buildable:lint": "npm run --prefix ./examples/basic lint",
"test:publish": "run-s test:publish:**",
"test": "run-p test:*"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"eslint-config-google": "0.14.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-react": "7.33.2"
},
"devDependencies": {
"@changesets/cli": "2.27.1",
"eslint": "8.55.0",
"npm-run-all": "4.1.5",
"typescript": "5.3.3"
},
"peerDependencies": {
"eslint": "^8.50.0",
"typescript": "^5.0.0"
},
"license": "MIT"
}