-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
113 lines (113 loc) · 3.05 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
{
"name": "@shoutem/cli",
"version": "0.16.4-rc.0",
"description": "Command-line tools for Shoutem applications",
"repository": {
"type": "git",
"url": "https://github.com/shoutem/cli"
},
"bin": {
"shoutem": "./build/shoutem.js"
},
"scripts": {
"prebuild": "npm run build:clean",
"build:clean": "rm -rf build",
"build": "babel ./src --ignore ./src/templates --out-dir build --source-maps inline --copy-files",
"extlint": "eslint",
"lint": "eslint ./ --ignore-pattern build --ignore-pattern templates",
"prepare": "npm run build",
"shoutem": "node build/shoutem.js",
"test": "mocha -R spec --require fetch-everywhere --compilers js:@babel/register \"src/**/*spec.js\""
},
"license": "ISC",
"dependencies": {
"@babel/cli": "7.24.1",
"@babel/core": "7.24.4",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "7.24.4",
"@babel/preset-react": "7.16.0",
"@babel/register": "7.23.7",
"@shoutem/fetch-token-intercept": "0.3.0",
"@shoutem/fork-terminal": "1.0.0",
"async": "2.0.0-rc.3",
"babel-eslint": "10.1.0",
"bluebird": "3.4.6",
"cli-spinner": "0.2.6",
"colors": "1.1.2",
"command-exists": "~1.2.4",
"decamelize": "^1.2.0",
"decompress": "4.2.1",
"diff": "^3.3.1",
"download-file": "latest",
"eslint": "^6.8.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "1.5.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "5.2.2",
"eslint-plugin-react-native": "1.0.2",
"exit-code": "1.0.2",
"form-data": "2.1.4",
"fs-extra": "3.0.1",
"glob-promise": "6.0.3",
"inquirer": "1.0.3",
"ip": "1.1.5",
"json-stringify-safe": "5.0.1",
"jsonapi-serializer": "3.5.3",
"linklocal": "^2.8.1",
"lodash": "4.17.21",
"mkdirp": "^3.0.1",
"mustache": "2.2.1",
"mv": "2.1.1",
"node-fetch": "^2.7.0",
"nodejs-file-downloader": "^4.12.1",
"opn": "^5.1.0",
"prettyjson": "1.2.1",
"progress": "2.0.0",
"promisify-child-process": "^4.1.2",
"replace-in-file": "2.5.0",
"request-promise": "4.1.1",
"request-promise-native": "1.0.3",
"rmfr": "1.0.1",
"semver": "5.3.0",
"tar.gz": "1.0.2",
"slugify": "^1.2.1",
"streamsearch": "0.1.2",
"tmp-promise": "1.0.2",
"universal-analytics": "0.4.13",
"uppercamelcase": "^3.0.0",
"urijs": "1.19.11",
"uuid": "9.0.0",
"yargonaut": "1.1.2",
"yargs": "6.6.0"
},
"devDependencies": {
"@shoutem/eslint-config-base": "^1.0.2",
"babel-cli": "6.8.0",
"babel-plugin-rewire": "1.0.0-rc-2",
"chai": "3.5.0",
"dos2unix-cli": "1.0.1",
"mocha": "2.4.5",
"nock": "8.0.0",
"prettier": "^1.19.1",
"sinon": "1.17.4"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
],
"only": [
"src"
]
}
}