-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.36 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
{
"name": "folder-navigator",
"description": "A SASjs web app for navigating folder in SAS 9 and Viya and modifying Stored Process / Job content.",
"version": "2.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod --aot",
"demobuild": "npm run build && sasjs cb -t viya && mv sasjsbuild/buildviya.sas buildviya.txt && sasjs cb -t sas9 && mv sasjsbuild/buildsas9.sas buildsas9.txt",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build-watch": "ng build --watch",
"deploy": "rsync -avhe ssh ./dist/* --delete $SSH_ACCOUNT:$DEPLOY_PATH",
"sync": "./node_modules/.bin/watch --wait=3 \"echo Account: $SSH_ACCOUNT && npm run deploy && echo 'App is synced!'\" dist"
},
"private": true,
"dependencies": {
"@angular/animations": "~9.0.7",
"@angular/cdk": "^9.2.4",
"@angular/common": "~9.0.7",
"@angular/compiler": "~9.0.7",
"@angular/core": "~9.0.7",
"@angular/forms": "~9.0.7",
"@angular/platform-browser": "~9.0.7",
"@angular/platform-browser-dynamic": "~9.0.7",
"@angular/router": "~9.0.7",
"@clr/angular": "^3.1.2",
"@clr/core": "3.1.15",
"@clr/icons": "5.1.0",
"@clr/ui": "5.1.0",
"@sasjs/adapter": "^2.10.5",
"@sasjs/utils": "^2.28.0",
"@webcomponents/webcomponentsjs": "^2.5.0",
"lodash-es": "^4.17.21",
"moment": "^2.29.1",
"ngx-ace-wrapper": "^11.0.0",
"rxjs": "~6.6.3",
"tslib": "^1.14.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.15",
"@angular/cli": "~9.0.7",
"@angular/compiler-cli": "~9.0.7",
"@angular/language-service": "~11.2.4",
"@sasjs/cli": "^2.37.8",
"@sasjs/core": "^2.45.2",
"@types/jasmine": "~3.6.4",
"@types/jasminewd2": "~2.0.3",
"@types/lodash-es": "^4.17.4",
"@types/node": "^14.14.31",
"codelyzer": "^6.0.1",
"ghooks": "^2.0.4",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~6.0.0",
"karma": "~6.1.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"ts-node": "~9.1.1",
"tslint": "~6.1.3",
"typescript": "~3.7.5",
"watch": "^1.0.2"
},
"config": {
"ghooks": {
"pre-commit": "sasjs lint"
}
}
}