-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "@kensho-technologies/babel-preset",
"version": "22.0.0",
"description": "Babel preset to transpile ES2020/TS/JSX.",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.12.0"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"fix": "prettier -w . && eslint --fix .",
"test": "tsc && prettier -c . && eslint . && jest",
"prepublishOnly": "npm test"
},
"author": "Kensho Technologies, LLC.",
"license": "Apache-2.0",
"repository": "kensho-technologies/babel-preset",
"prettier": "@kensho-technologies/prettier-config",
"peerDependencies": {
"@babel/core": "^7.24.6",
"@babel/runtime": "^7.24.6",
"react-refresh": "^0.14.0"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@emotion/babel-plugin": "^11.11.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@kensho-technologies/eslint-config": "^27.0.0",
"@kensho-technologies/prettier-config": "^2.0.0",
"@kensho-technologies/tsconfig": "^5.0.0",
"@types/babel__core": "^7.20.5",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"typescript": "~5.1.6"
}
}