-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.19 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "wttj-config",
"version": "3.0.1",
"description": "Front-end code lint and formatting config",
"main": "lib/index.js",
"files": [
"lib/eslint/**",
"lib/prettier/**",
"lib/scripts/**",
"lib/stylelint/**",
"lib/tsconfig/**"
],
"scripts": {
"audit:fix": "npm_config_yes=true npx yarn-audit-fix",
"check:audit": "/bin/bash -c 'yarn audit --level critical; [[ $? -ge 16 ]] && exit 1 || exit 0'",
"lint": "eslint lib --max-warnings 0",
"prepare": "husky",
"release": "release-it",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WTTJ/front-config.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"eslint",
"eslintconfig",
"prettier",
"prettierconfig",
"babel",
"babelconfig",
"typescript",
"tsconfig"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WTTJ/front-config/issues"
},
"homepage": "https://github.com/WTTJ/front-config#readme",
"dependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-syntax-flow": "^7.23.3",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"postcss-styled-syntax": "^0.6.4",
"postcss-syntax": "^0.36.2",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-recommended": "^14.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"babel-jest": "^29.7.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"postcss": "^8.4.35",
"release-it": "^17.1.1",
"typescript": "^5.3.3"
}
}