-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
108 lines (108 loc) · 2.61 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
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "babel-plugin-direct-import",
"version": "1.0.0",
"description": "Babel plugin to cherry-pick ES module imports",
"keywords": [
"babel-plugin",
"modules",
"materia-ui"
],
"repository": "https://github.com/umidbekk/babel-plugin-direct-import.git",
"license": "MIT",
"author": "Umidbek Karimov <[email protected]>",
"main": "lib/plugin.js",
"files": [
"lib",
"!**/*.spec.js"
],
"scripts": {
"checks": "npx tsc && npm run lint && npm run format -- --no-write && npm t",
"format": "prettier --write --check .",
"lint": "eslint .",
"prepare": "husky install",
"release": "npx --yes np --test-script checks",
"tdd": "vitest watch",
"test": "vitest run --coverage"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.*": "prettier --write --ignore-unknown"
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"overrides": [
{
"files": [
"lib/**/*.js"
],
"excludedFiles": [
"**/*.spec.js"
],
"parserOptions": {
"ecmaVersion": 2022
},
"extends": [
"plugin:node/recommended-script"
]
},
{
"files": [
"**/*.spec.js",
"test/**/*.js",
"vitest.config.js"
],
"parserOptions": {
"ecmaVersion": 2022
},
"extends": [
"plugin:node/recommended-module"
],
"rules": {
"node/no-missing-import": "off"
}
}
]
},
"dependencies": {
"resolve": "^1.22.1"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/parser": "7.21.2",
"@babel/plugin-syntax-flow": "7.18.6",
"@material-ui/core": "4.12.3",
"@material-ui/icons": "4.11.3",
"@material-ui/lab": "4.0.0-alpha.60",
"@mui/core": "5.0.0-alpha.54",
"@mui/icons-material": "5.11.11",
"@mui/lab": "5.0.0-alpha.121",
"@mui/material": "5.11.11",
"@mui/system": "5.11.11",
"@types/babel__core": "7.20.0",
"@types/node": "18.14.4",
"@types/resolve": "1.20.2",
"@umidbekk/configs": "0.2.0",
"@vitest/coverage-c8": "^0.29.2",
"eslint": "8.35.0",
"eslint-plugin-node": "11.1.0",
"husky": "8.0.3",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"prettier-plugin-jsdoc": "0.4.2",
"prettier-plugin-organize-imports": "3.2.2",
"prettier-plugin-packagejson": "2.4.3",
"typescript": "4.9.5",
"vite": "4.1.4",
"vitest": "0.29.2"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"volta": {
"node": "14.21.3",
"npm": "8.19.4"
}
}