forked from williaster/build-config
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
100 lines (100 loc) · 2.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
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
{
"name": "@superset-ui/build-config",
"version": "0.2.1",
"description": "Version-controlled build config for easy re-use and sharing",
"scripts": {
"commit": "superset-commit",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "beemo eslint .",
"prettier": "beemo prettier \"./{configs,dotfiles}/*.{js,json,md}\"",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"beemo": {
"module": "@local",
"drivers": [
"eslint",
"prettier",
"babel"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "[email protected]:apache-superset/build-config.git"
},
"keywords": [
"build",
"config",
"javascript",
"beemo"
],
"authors": [
"Chris Williams @williaster",
"Krist Wongsuphasawat @kristw"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/apache-superset/build-config/issues"
},
"homepage": "https://github.com/apache-superset/build-config#README",
"dependencies": {
"@babel/cli": "7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@babel/traverse": "^7.7.2",
"@beemo/cli": "^1.0.6",
"@beemo/core": "^1.0.8",
"@beemo/driver-babel": "^1.0.6",
"@beemo/driver-eslint": "^1.0.7",
"@beemo/driver-jest": "^1.0.4",
"@beemo/driver-prettier": "^1.0.4",
"@beemo/driver-typescript": "^1.1.5",
"@types/enzyme": "^3.1.15",
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-plugin-transform-dev": "^2.0.1",
"babel-plugin-typescript-to-proptypes": "^1.1.0",
"babel-preset-minify": "^0.5.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-compat": "^2.6.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.0",
"jest": "^24.1.0",
"jest-runner-eslint": "^0.7.3",
"prettier": "^1.14.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-test-renderer": "^16.4.1",
"typescript": "^3.7.2"
},
"devDependencies": {
"@superset-ui/commit-config": "^0.0.9",
"husky": "^3.1.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}