-
-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathpackage.json
53 lines (53 loc) · 1.84 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
{
"description": "NativeScript Application",
"main": "main.js",
"license": "SEE LICENSE IN <your-license-filename>",
"readme": "NativeScript Application",
"repository": "<fill-your-repository-here>",
"dependencies": {
"@angular/animations": "~11.0.0",
"@angular/common": "~11.0.0",
"@angular/compiler": "~11.0.0",
"@angular/core": "~11.0.0",
"@angular/forms": "~11.0.0",
"@angular/platform-browser": "~11.0.0",
"@angular/platform-browser-dynamic": "~11.0.0",
"@angular/router": "~11.0.0",
"@nativescript/angular": "file:../../dist/nativescript-angular-scoped.tgz",
"nativescript-theme-core": "~1.0.2",
"reflect-metadata": "~0.1.13",
"rxjs": "~6.6.0",
"@nativescript/core": "~7.0.0",
"zone.js": "^0.11.1"
},
"devDependencies": {
"@angular/compiler-cli": "~11.0.0",
"@nativescript/ios": "7.0.5",
"@nativescript/webpack": "~3.0.0",
"@ngtools/webpack": "~11.0.0",
"@types/chai": "~4.2.0",
"@types/mocha": "~7.0.0",
"@types/node": "~14.0.0",
"babel-traverse": "~6.26.0",
"babel-types": "~6.26.0",
"babylon": "~6.18.0",
"chai": "^4.2.0",
"lazy": "~1.0.11",
"mocha": "~8.0.1",
"mochawesome": "~6.1.1",
"nativescript-css-loader": "~0.26.0",
"node-sass": "~4.14.1",
"typescript": "~4.0.0"
},
"scripts": {
"clean": "ns clean",
"setup": "cd ../../nativescript-angular && npm run prep.apps && cd ../e2e/animation-examples && npm run clean",
"u": "update-ns-webpack",
"e2e": "tsc -p e2e && mocha --opts ../config/mocha.opts --recursive e2e --appiumCapsLocation ../config/appium.capabilities.json",
"e2e-watch": "tsc -p e2e --watch",
"ns-verify-bundle": "ns-verify-bundle",
"update-ns-webpack": "update-ns-webpack",
"ios": "ns debug ios --emulator --no-hmr",
"android": "ns debug android --emulator --no-hmr"
}
}