-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.44 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
{
"name": "sparrowhawk",
"version": "0.1.0",
"description": "An Angular2 native mobile app to help you practice Korean, flashcard-style, on the go",
"keywords": [
"korean",
"hangeul",
"hangul",
"language",
"flashcards",
"flash-cards",
"memorization",
"memorize"
],
"author": "Nara Kasbergen <[email protected]>",
"license": "GPL-3.0",
"homepage": "https://github.com/xiehan/sparrowhawk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xiehan/sparrowhawk.git"
},
"bugs": {
"url": "https://github.com/xiehan/sparrowhawk/issues"
},
"main": "app/main.ts",
"scripts": {
"postinstall": "typings install",
"update": "npm prune && npm cache clean && npm install",
"init": "tns install",
"lint": "tslint 'app/**/*.ts'",
"start": "npm run start:ios",
"start:ios": "tns run ios --emulator",
"start:android": "tns run android",
"watch": "npm run watch:ios",
"watch:ios": "tns livesync ios --emulator --watch",
"watch:android": "tns livesync android --watch",
"debug": "npm run debug:ios",
"debug:ios": "tns debug ios --emulator",
"debug:android": "tns debug android"
},
"dependencies": {
"@angular/common": "2.2.1",
"@angular/compiler": "2.2.1",
"@angular/core": "2.2.1",
"@angular/forms": "2.2.1",
"@angular/http": "2.2.1",
"@angular/platform-browser": "2.2.1",
"@angular/platform-browser-dynamic": "2.2.1",
"@angular/router": "3.2.1",
"@ngrx/core": "^1.2.0",
"@ngrx/store": "^2.2.1",
"nativescript-angular": "1.2.0",
"nativescript-cardview": "^1.2.1",
"nativescript-plugin-firebase": "^3.8.4",
"nativescript-theme-core": "^0.2.1",
"reflect-metadata": "~0.1.8",
"rxjs": "5.0.0-beta.12",
"tns-core-modules": "2.4.2"
},
"devDependencies": {
"babel-traverse": "6.20.0",
"babel-types": "6.20.0",
"babylon": "6.14.1",
"codelyzer": "0.0.28",
"lazy": "1.0.11",
"nativescript-dev-android-snapshot": "^0.*.*",
"nativescript-dev-sass": "^0.4.1",
"nativescript-dev-typescript": "^0.3.2",
"tslint": "^3.9.0",
"tslint-eslint-rules": "^3.2.0",
"typescript": "~2.0.10",
"zone.js": "~0.6.21"
},
"engines": {
"node": ">= 4.1",
"npm": ">= 2.14.3"
},
"nativescript": {
"id": "org.nativescript.sparrowhawk",
"tns-ios": {
"version": "2.4.0"
},
"tns-android": {
"version": "2.4.1"
}
},
"private": true
}