-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.02 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
{
"name": "babel-plugin-tsconfig-paths-module-resolver",
"version": "1.0.0",
"description": "A babel plugin that combines babel-plugin-module-resolver and tsconfig-paths to resolve tsconfig paths",
"main": "./index.js",
"types": "./index.d.ts",
"sideEffects": false,
"scripts": {
"test": "jest",
"lint": "eslint src --ext .ts",
"build": "./scripts/build",
"build-examples": "npm run build --workspaces"
},
"exports": {
".": {
"node": "./index.js",
"default": "./index.js"
},
"./create-resolve": {
"node": "./create-resolve.js",
"default": "./create-resolve.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricokahler/babel-plugin-tsconfig-paths-module-resolver.git"
},
"keywords": [
"tsconfig",
"babel",
"babel-plugin",
"tsconfig-paths",
"babel-plugin-module-resolver"
],
"author": {
"email": "hello@rico.codes",
"name": "Rico Kahler",
"url": "https://rico.codes"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ricokahler/babel-plugin-tsconfig-paths-module-resolver/issues"
},
"homepage": "https://github.com/ricokahler/babel-plugin-tsconfig-paths-module-resolver#readme",
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/jest": "27.0.1",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.10.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.2",
"jest": "27.1.0",
"prettier": "2.7.1",
"semantic-release": "24.2.0",
"typescript": "4.8.4"
},
"dependencies": {
"babel-plugin-module-resolver": "^4.1.0",
"tsconfig-paths": "^3.11.0"
},
"workspaces": [
"examples/*"
]
}