forked from callstack/react-native-builder-bob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.02 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
{
"name": "@react-native-community/bob",
"version": "0.8.0",
"description": "CLI to build JavaScript files for React Native libraries",
"repository": "git@github.com:react-native-community/bob.git",
"author": "Satyajit Sahoo <satyajit.happy@gmail.com>",
"license": "MIT",
"main": "src/index.js",
"bin": {
"bob": "bin/bob.js"
},
"files": [
"bin",
"lib"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"lint": "eslint --ext '.js,.ts,.tsx' .",
"typescript": "tsc --noEmit",
"build": "babel --extensions .ts,.tsx src --out-dir lib --ignore '**/__tests__/**' --source-maps --delete-dir-on-start",
"watch": "yarn build --watch",
"prepare": "yarn build",
"release": "release-it"
},
"dependencies": {
"@babel/core": "^7.7.7",
"chalk": "^3.0.0",
"cosmiconfig": "^6.0.0",
"del": "^5.1.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"inquirer": "^7.0.1",
"is-git-dirty": "^1.0.0",
"json5": "^2.1.1",
"metro-react-native-babel-preset": "^0.57.0",
"yargs": "^15.0.2"
},
"optionalDependencies": {
"jetifier": "^1.6.5"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@commitlint/config-conventional": "^8.2.0",
"@release-it/conventional-changelog": "^1.1.0",
"@types/babel__core": "^7.1.3",
"@types/chalk": "^2.2.0",
"@types/del": "^4.0.0",
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/inquirer": "^6.5.0",
"@types/json5": "^0.0.30",
"@types/yargs": "^13.0.3",
"commitlint": "^8.2.0",
"eslint": "^6.7.2",
"eslint-config-satya164": "^3.1.5",
"husky": "^3.1.0",
"prettier": "^1.19.1",
"release-it": "^12.4.3",
"typescript": "^3.7.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typescript"
}
}
}