generated from mobilehero-archive/titanium-template-turbo-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-template.json
83 lines (83 loc) · 2.37 KB
/
package-template.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
{
"name": "${name}",
"version": "1.0.0",
"description": "${description}",
"main": "index.js",
"scripts": {
"test": "npm run prep",
"prep": "npm install --ignore-scripts && npm run list",
"lint": "eslint ./app --fix",
"print": "printenv",
"prebuild": "ti sdk install",
"clean": "rm -rfv build && rm -rfv i18n && rm -rfv platform && rm -rfv Resources",
"reinstall": "npm run clean && rm -rfv node_modules && npm install",
"build": "npm run build:ios && npm run build:android",
"build:ios": "ti build -p ios --build-only --log-level trace",
"build:android": "ti build -p android --build-only --log-level trace",
"alloy": "turbo2 compile ./app --config platform=ios,version=0,simtype=none,devicefamily=universal,deploytype=development,target=simulator",
"android": "ti build -p android --log-level trace",
"ios": "ti build -p ios --log-level trace"
},
"license": "${license}",
"dependencies": {
"@geek/cache": "^1.0.2",
"@geek/jwt": "^1.0.1",
"@titanium/plugin-turbo": ">=1.0.6",
"@titanium/turbo": "^2.1.10",
"@geek/retry": "^1.0.0",
"@mobile/tinycolor2": "^1.4.1-2",
"@titanium/authentication": "^1.0.1",
"@titanium/authentication-oauth": "^1.0.13",
"@titanium/bluebird": "^3.7.3",
"@titanium/calendar-picker": "1.0.0",
"@titanium/deeply": "^1.0.4",
"@titanium/facebook": ">=1.0.10",
"@titanium/googlesignin": "^0.0.1",
"@titanium/identity": ">=1.1.2",
"@titanium/lottie": "^1.0.24",
"@titanium/observer": ">=0.0.3",
"@titanium/permissions": ">=1.0.3",
"@titanium/please": "^1.0.11",
"@titanium/screenshot": "^1.0.1",
"@titanium/updater": "^1.0.1",
"@titanium/webdialog": "^2.1.3",
"ansi-colors": "^4.1.1"
},
"devDependencies": {
"@titanium/eslint-config": "1.0.1",
"bluebird": "^3.7.2",
"eslint": "^7.18.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^31.0.8",
"eslint-plugin-jsonc": "^0.8.2",
"eslint-plugin-promise": "^4.2.1",
"fs-extra": "^9.1.0",
"gm": "^1.23.1",
"handlebars": "^4.7.6",
"lodash": "^4.17.20",
"prettier": "^2.2.1",
"titanium": ">=5.3.0"
},
"author": {
"name": "${author_name}",
"email": "${author_email}",
"url": "${author_url}"
},
"repository": {
"type": "${repo_type}",
"url": "${repo_url}"
},
"bugs": {
"url": "${bugs_url}",
"email": "${bugs_email}"
},
"keywords": [
"titanium",
"mobile",
"alloy",
"turbo",
"appcelerator",
"axway",
"amplify"
]
}