-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.26 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
{
"name": "ns-device-import-activity",
"main": "./src/main.ts",
"version": "1.0.0",
"private": true,
"scripts": {
"lint": "npx eslint --ext=ts src/",
"stylelint": "npx stylelint \"./src/**/*.{scss,css}\"",
"jsonlint": "npx jsonlint-cli \"./src/**/*.{json,JSON}\"",
"mdlint": "npx markdownlint **/*.{md,MD} -i node_modules -c mdlint.json",
"debug:android": "ns debug android",
"debug:ios": "ns debug ios",
"debug:android:prod": "ns debug android --env.production",
"debug:ios:prod": "ns debug ios --env.production"
},
"dependencies": {
"@angular/animations": "^12.2.0",
"@angular/common": "^12.2.0",
"@angular/compiler": "^12.2.0",
"@angular/core": "^12.2.0",
"@angular/forms": "^12.2.0",
"@angular/platform-browser": "^12.2.0",
"@angular/platform-browser-dynamic": "^12.2.0",
"@angular/router": "^12.2.0",
"@nativescript/angular": "^12.2.0",
"@nativescript/core": "~8.1.1",
"@nativescript/theme": "~3.0.1",
"rxjs": "~7.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular/compiler-cli": "^12.2.0",
"@nativescript/android": "8.1.1",
"@nativescript/types": "~8.1.1",
"@nativescript/webpack": "~5.0.0",
"@ngtools/webpack": "^12.2.0",
"typescript": "~4.3.5"
}
}