-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.85 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
{
"name": "crowdbotics",
"version": "3.2.4",
"description": "A powerful command-line tool designed to streamline the management of your Crowdbotics applications",
"main": "index.js",
"license": "MIT",
"bin": {
"cb": "./index.js"
},
"type": "module",
"engines": {
"node": ">18.0"
},
"scripts": {
"demo": "npx . demo",
"add": "npx . add",
"remove": "npx . remove",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "yarn run eslint scripts",
"commit-module": "npx . commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crowdbotics/cli.git"
},
"author": "crowdbotics",
"bugs": {
"url": "https://github.com/crowdbotics/cli/issues"
},
"homepage": "https://github.com/crowdbotics/cli#readme",
"dependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/generator": "^7.14.9",
"@babel/parser": "^7.18.8",
"@babel/preset-env": "^7.18.2",
"@babel/template": "^7.16.7",
"@babel/types": "^7.18.8",
"@segment/analytics-node": "^2.0.0",
"@sentry/node": "^7.103.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"arg": "^5.0.2",
"cli-table": "^0.3.11",
"fast-xml-parser": "^4.2.5",
"find": "^0.3.0",
"find-git-root": "^1.0.4",
"fs-extra": "^10.1.0",
"inquirer": "^9.2.0",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2",
"ora": "^7.0.1",
"prettier": "^2.6.2",
"semver": "^7.6.0",
"unzip-stream": "^0.3.4"
},
"resolutions": {
"shell-quote": "1.7.3"
},
"devDependencies": {
"@react-native-community/cli": "5.0.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.30.0",
"react-native": "0.71.7"
}
}