-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.89 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@valtech-commerce/eslint-config",
"version": "4.0.0",
"description": "Valtech_Commerce ESLint configurations",
"definition": "",
"homepage": "https://github.com/valtech-commerce/eslint-config",
"author": {
"name": "Valtech Canada inc.",
"url": "https://www.valtech.ca/"
},
"keywords": [
"browser",
"eslint",
"eslintconfig",
"eslint-config",
"jest",
"jsdoc",
"json",
"react",
"test",
"typescript"
],
"license": "MIT",
"repository": {
"url": "git://github.com/valtech-commerce/eslint-config.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/valtech-commerce/eslint-config/issues"
},
"engines": {
"node": ">= 16"
},
"exports": {
".": "./src/config/core.js",
"./browser": "./src/config/browser.js",
"./core": "./src/config/core.js",
"./jest": "./src/config/jest.js",
"./jsdoc": "./src/config/jsdoc.js",
"./json": "./src/config/json.js",
"./node/module": "./src/config/node/module.js",
"./node/module/typescript": "./src/config/node/module/typescript.js",
"./node/script": "./src/config/node/script.js",
"./react": "./src/config/react.js",
"./react/typescript": "./src/config/react-typescript.js",
"./typescript": "./src/config/typescript.js"
},
"scripts": {
"test": "npm run lint && jest ./test/**",
"test:feature": "jest ./test/feature/**",
"test:standards": "jest ./test/standards/**",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --report-unused-disable-directives .",
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:prettier": "prettier --write .",
"fix:eslint": "eslint --fix --ext .js .",
"script:fixtures": "node ./test/utils/generate-fixtures.js"
},
"jest": {
"setupFilesAfterEnv": ["jest-extended/all"]
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@valtech-commerce/jest-gwt": "^1.0.0",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"prettier": "^2.8.4",
"react": "^18.2.0",
"sort-json": "^2.0.1"
},
"dependencies": {
"@valtech-commerce/fs": "^1.7.0",
"deepmerge": "^4.3.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.7.0"
},
"peerDependencies": {
"@babel/core": "^7",
"@babel/eslint-parser": "^7.21.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsdoc": "^40.0.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^46.0.0",
"typescript": "^4 || ^5"
}
}