-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
54
55
56
57
58
59
60
{
"name": "@roborox/eslint-config-default",
"version": "2.2.0",
"private": false,
"description": "Config for eslint",
"keywords": [
"Eslint",
"Config",
"Prettier"
],
"homepage": "https://github.com/roborox/eslint-default-config#readme",
"bugs": "https://github.com/roborox/eslint-default-config/issues",
"repository": {
"url": "https://github.com/roborox/eslint-default-config.git"
},
"license": "ISC",
"author": {
"name": "Roborox Team",
"url": "https://roborox.org"
},
"main": "index.js",
"files": [
"index.js",
"CHANGELOG.md"
],
"scripts": {
"ci": "sh ci.sh",
"lint": "eslint --ext .js ./",
"lint:fix": "eslint --ext .js ./ --fix"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-eslint": "^10.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^31.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.1",
"@semantic-release/release-notes-generator": "^9.0.1",
"eslint": "*",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"husky": "^4.2.5",
"semantic-release": "^17.1.1",
"typescript": "4.0.2"
},
"peerDependencies": {
"eslint": ">=7.7.0",
"typescript": ">=4.0.0"
}
}