-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.01 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
61
62
63
64
65
{
"name": "@buildinams/lint",
"description": "BiA's base lint config(s).",
"version": "0.4.3",
"license": "MIT",
"author": "Build in Amsterdam <[email protected]> (https://www.buildinamsterdam.com/)",
"exports": {
"./eslint/javascript": "./eslint/javascript.js",
"./eslint/typescript": "./eslint/typescript.js",
"./eslint/react": "./eslint/react-javascript.js",
"./eslint/react-typescript": "./eslint/react-typescript.js",
"./eslint/next": "./eslint/next-javascript.js",
"./eslint/next-typescript": "./eslint/next-typescript.js",
"./stylelint": "./stylelint/index.js",
"./prettier": "./prettier/index.js"
},
"homepage": "https://github.com/buildinamsterdam/lint#readme",
"repository": {
"type": "git",
"url": "https://github.com/buildinamsterdam/lint.git"
},
"bugs": {
"url": "https://github.com/buildinamsterdam/lint/issues"
},
"keywords": [
"bia",
"lint",
"eslint",
"prettier"
],
"scripts": {
"lint": "eslint \"**/*.js\"",
"prettier": "prettier --check --ignore-unknown .",
"prettier:fix": "prettier --write --ignore-unknown .",
"depcheck": "npx npm-check --update"
},
"peerDependencies": {
"react": ">=17.0.0 || 18 || 19"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"dependencies": {
"@babel/eslint-parser": "^7.23.3",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.1.1",
"stylelint": "^16.1.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-recess-order": "^4.4.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0"
}
}