-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
116 lines (116 loc) · 3.8 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "senstate",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"nx": "nx",
"start": "npm run start:dev",
"build": "ng build",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "ng update @nrwl/workspace",
"update:check": "ng update",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"start:dev": "ng run example-app:serve-hub",
"build:cli:raw": "npx rimraf dist/apps && ng build senstate --prod --stats-json && ng build senstate-dashboard --prod --aot && npx rimraf dist/apps/senstate/main.js.map",
"build:cli": "npm run build:cli:raw && npx uglify-js dist/apps/senstate/main.js -o dist/apps/senstate/main.js",
"build:libs": "ng build client && ng build client-connection",
"build:all": "npm run build:libs && npm run build:cli",
"client:coverage": "ng test client --codeCoverage=true",
"client-connection:coverage": "ng test client-connection --codeCoverage=true",
"markdown:lint": "npx markdownlint-cli@0.19 -c tools/configs/markdownlint.yml **/*.md -i node_modules -i dist",
"cspell:lint": "npx cspell@4.0 -c tools/configs/cspell.json -e node_modules '**/*.md'",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"private": true,
"dependencies": {
"@angular/animations": "8.2.13",
"@angular/cdk": "8.2.3",
"@angular/common": "8.2.13",
"@angular/compiler": "8.2.13",
"@angular/core": "8.2.13",
"@angular/forms": "8.2.13",
"@angular/material": "8.2.3",
"@angular/platform-browser": "8.2.13",
"@angular/platform-browser-dynamic": "8.2.13",
"@angular/router": "8.2.13",
"@gewd/lazy": "^0.1.1",
"@gewd/ng-utils": "^0.2.1",
"@material-extended/mde": "2.3.1",
"@ngrx/effects": "8.4.0",
"@ngrx/store": "8.4.0",
"@nrwl/angular": "8.6.0",
"angular-material-css-vars": "0.1.5",
"angular2-prettyjson": "3.0.1",
"angular2-qrcode": "2.0.3",
"core-js": "2.5.4",
"disparity": "3.0.0",
"finalhandler": "1.1.2",
"hammerjs": "2.0.8",
"immer": "4.0.2",
"jsondiffpatch": "^0.3.11",
"lodash": "4.17.15",
"ngrx-store-logger": "0.2.4",
"ngx-masonry": "1.1.4",
"reflect-metadata": "0.1.12",
"rxjs": "6.4.0",
"serve-static": "1.14.1",
"snyk": "^1.334.0",
"stacktracey": "1.2.122",
"ts-action": "11.0.0",
"ts-action-immer": "3.0.1",
"tslib": "1.10.0",
"ws": "7.1.2",
"xss": "^1.0.6",
"zone.js": "0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.803.21",
"@angular-devkit/build-ng-packagr": "0.803.17",
"@angular/cli": "8.3.17",
"@angular/compiler-cli": "8.2.13",
"@angular/language-service": "8.2.13",
"@nrwl/jest": "8.6.0",
"@nrwl/node": "8.11.2",
"@nrwl/workspace": "8.6.0",
"@types/jest": "24.0.9",
"@types/node": "8.9.4",
"@types/socket.io": "2.1.3",
"@types/ws": "6.0.3",
"@types/lodash": "4.14.154",
"codelyzer": "5.0.1",
"dotenv": "6.2.0",
"eslint": "6.1.0",
"ineeda": "0.11.3",
"jest": "24.1.0",
"jest-preset-angular": "7.0.1",
"ng-packagr": "9.0.0",
"prettier": "1.18.2",
"ts-jest": "24.0.0",
"ts-node": "8.0.0",
"tsickle": "0.37.1",
"tslint": "5.11.0",
"typescript": "3.4.5"
},
"browser": {
"path": false,
"fs": false
},
"snyk": true
}