-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.03 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
{
"name": "@cabify/babel-preset",
"version": "0.1.2",
"description": "babel preset for Cabify JS projects",
"main": "app.js",
"license": "Apache-2.0",
"repository": "github:cabify/babel-preset",
"homepage": "https://github.com/cabify/babel-preset#readme",
"bugs": {
"url": "https://github.com/cabify/babel-preset/issues"
},
"keywords": [
"javascript",
"babel",
"polyfills",
"shims",
"es6"
],
"scripts": {
"build": "echo 'No build step to perform'",
"test": "npm run lint:check && npm run format:check",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "echo 'No typecheck to perform'",
"test:ci": "echo 'No test to perform'",
"publish:major": "npm version major",
"publish:minor": "npm version minor",
"publish:patch": "npm version patch",
"publish:canary": "npm version prerelease --preid=beta"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-private-methods": "^7.16.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@babel/runtime-corejs3": "^7.26.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-lodash": "^3.3.4",
"react-refresh": "^0.14.2"
},
"peerDependencies": {
"core-js": ">= 3.0.0 < 4.0.0"
},
"devDependencies": {
"@cabify/eslint-config": "2.1.4",
"eslint": "8.57.1",
"prettier": "3.3.3"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "18.16.0",
"yarn": "1.22.19"
}
}