-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
123 lines (123 loc) · 3.64 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "babel-preset-edge",
"version": "5.5.1",
"description": "Edge Babel is a centralized Babel Configuration. Part of the Edge Platform.",
"main": "lib/index.cjs.js",
"scripts": {
"lint": "run-s \"lint:* {@}\" --",
"lint:script": "eslint '**/*.{js,jsx}'",
"format": "prettier --write '**/*.{js,jsx,json,md}' && eslint --fix '**/*.{js,jsx}'",
"test": "jest",
"prepare": "rimraf lib && preppy",
"release": "git push && release-it --github.release --npm.publish --non-interactive",
"release:minor": "git push && release-it --github.release --npm.publish --non-interactive --increment minor",
"release:major": "git push && release-it --github.release --npm.publish --non-interactive --increment major"
},
"engines": {
"node": ">=8.0.0",
"yarn": ">=1.0.0",
"npm": ">=6.0.0"
},
"keywords": [
"babel",
"preset",
"babel-preset",
"react",
"webpack",
"universal"
],
"files": [
"lib/"
],
"license": "Apache-2.0",
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": "eslint"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.js?$": "babel-jest"
},
"testPathIgnorePatterns": [
"__fixtures__",
"core.js"
]
},
"author": {
"name": "Sebastian Software",
"email": "[email protected]",
"url": "https://www.sebastian-software.de"
},
"bugs": {
"url": "https://github.com/sebastian-software/babel-preset-edge/issues"
},
"homepage": "https://github.com/sebastian-software/babel-preset-edge#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sebastian-software/babel-preset-edge.git"
},
"peerDependencies": {
"@babel/runtime": ">=7",
"core-js": ">=3"
},
"dependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-proposal-optional-catch-binding": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-syntax-jsx": "^7.7.4",
"@babel/plugin-transform-react-constant-elements": "^7.7.4",
"@babel/plugin-transform-react-inline-elements": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@loadable/babel-plugin": "^5.11.0",
"@loadable/component": "^5.11.0",
"app-root-dir": "^1.0.2",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-smart-webpack-import": "^1.5.1",
"babel-preset-minify": "^0.5.1",
"browserslist": "^4.8.2",
"fast-async": "^7.0.6",
"semver": "^6.3.0"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/node": "^7.7.4",
"@babel/runtime": "^7.3.1",
"@effective/eslint-config": "^1.4.0",
"async": "^3.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"core-js": "^3.1.4",
"eslint": "^6.7.2",
"graphql": "^14.5.8",
"graphql.macro": "^1.4.2",
"husky": "^3.1.0",
"jest-cli": "^24.9.0",
"lint-staged": "^9.5.0",
"lodash": "^4.17.15",
"npm-run-all": "^4.1.5",
"preppy": "^9.3.0",
"prettier": "^1.19.1",
"preval.macro": "^4.0.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"recompose": "^0.30.0",
"rimraf": "^3.0.0",
"typescript": "^3.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}