-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.96 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
{
"name": "@moxy/babel-preset",
"description": "Babel preset to be used at MOXY",
"version": "3.3.2",
"keywords": [
"babel",
"preset",
"react",
"moxy",
"transpile"
],
"author": "André Cruz <[email protected]>",
"homepage": "https://github.com/moxystudio/babel-preset",
"repository": {
"type": "git",
"url": "[email protected]:moxystudio/babel-preset.git"
},
"license": "MIT",
"files": [
"end-project.js",
"lib.js",
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "jest --env node --coverage",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.8.3",
"@babel/plugin-transform-react-display-name": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"@babel/plugin-transform-react-jsx-self": "^7.8.3",
"@babel/plugin-transform-react-jsx-source": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.10.1",
"@babel/runtime": "^7.8.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"browserslist-config-google": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@moxy/eslint-config-base": "^13.0.3",
"@moxy/eslint-config-jest": "^13.0.3",
"@moxy/jest-config-base": "^6.0.0",
"eslint": "^7.28.0",
"husky": "^4.2.1",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"standard-version": "^9.3.0"
}
}