-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
72 lines (72 loc) · 3.13 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
{
"name": "beancount-mobile",
"version": "1.6.0",
"description": "Beancount Mobile App",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/xuhcc/beancount-mobile",
"private": true,
"dependencies": {
"@angular/animations": "~10.2.3",
"@angular/common": "~10.2.3",
"@angular/compiler": "~10.2.3",
"@angular/core": "~10.2.3",
"@angular/forms": "~10.2.3",
"@angular/platform-browser": "~10.2.3",
"@angular/platform-browser-dynamic": "~10.2.3",
"@angular/router": "~10.2.3",
"@nativescript/angular": "~10.1.7",
"@nativescript/core": "~7.0.0",
"@nativescript/imagepicker": "~1.0.0",
"@nativescript/schematics": "^10.0.0",
"@nativescript/unit-test-runner": "~1.0.2",
"@nativescript/webpack": "~3.0.8",
"@nstudio/nativescript-floatingactionbutton": "~3.0.4",
"@nstudio/nativescript-pulltorefresh": "~3.0.1",
"@triniwiz/nativescript-toasty": "~4.0.3",
"material-design-icons-iconfont": "^5.0.1",
"nativescript-foss-sidedrawer": "^2.0.0",
"nativescript-modal-datetimepicker": "~2.1.5",
"nativescript-permissions": "^1.3.6",
"reflect-metadata": "~0.1.12",
"rxjs": "~6.5.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular/compiler-cli": "~10.2.3",
"@nativescript/android": "7.0.1",
"@nativescript/types": "~7.0.0",
"@ngtools/webpack": "~10.2.0",
"@types/jasmine": "3.5.14",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"karma": "5.2.3",
"karma-jasmine": "4.0.1",
"karma-nativescript-launcher": "0.4.0",
"karma-webpack": "3.0.5",
"node-sass": "^4.12.0",
"stylelint": "~13.12.0",
"stylelint-config-sass-guidelines": "~8.0.0",
"typescript": "3.9.7"
},
"scripts": {
"postinstall": "./scripts/copy-fonts.js",
"build-icons": "nsc resources generate icons artwork/logo_circle.png",
"build-splashes": "nsc resources generate splashes artwork/logo_rounded.png --background \"#205081\"",
"android": "nsc debug android --no-hmr",
"android-debug": "nsc build android",
"android-release": "nsc build android --release --clean --key-store-path /dev/null --key-store-alias NULL --key-store-password NULL --key-store-alias-password NULL",
"android-unsigned": "RELEASE_UNSIGNED=1 nsc build android --release --clean --key-store-path /dev/null --key-store-alias NULL --key-store-password NULL --key-store-alias-password NULL || true",
"test": "nsc test android --no-watch",
"lint": "npx eslint 'src/**/*.ts' && stylelint 'src/**/*.scss'",
"clean": "rm -rf platforms",
"version": "./scripts/check-changelog.js"
},
"main": "main.js"
}