-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.62 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
{
"name": "shelly-commander",
"description": "An app to find shelly devices within a specified IP range",
"version": "0.6.1",
"scripts": {
"clean": "rimraf dist",
"start": "ng serve --open",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "karma start --singleRun --browsers ChromeHeadless",
"prebuild-release": "npm run clean",
"build-release": "npm run test && npm run lint && npm run build",
"lint": "eslint . --ext .ts,.d.ts,.js",
"lint:fix": "eslint . --ext .ts,.d.ts,.js --fix",
"test:watch": "karma start"
},
"private": true,
"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",
"@morgan-stanley/needle": "^0.3.10",
"@typescript-eslint/typescript-estree": "^5.2.0",
"ag-grid-angular": "^26.1.0",
"ag-grid-community": "^26.1.0",
"axios": "^0.24.0",
"bootstrap": "^5.1.3",
"reflect-metadata": "^0.1.13",
"rxjs": "~6.6.0",
"string-template": "^1.0.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.11",
"@angular/cli": "~12.2.11",
"@angular/compiler-cli": "~12.2.0",
"@morgan-stanley/ts-mocking-bird": "^0.4.2",
"@types/jasmine": "^3.8.2",
"@types/node": "^12.11.1",
"@types/string-template": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"jasmine": "^3.10.0",
"jasmine-core": "~3.8.0",
"karma": "^6.3.6",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-source-map-support": "^1.4.0",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"prettier": "^2.2.1",
"puppeteer": "^10.4.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"typescript": "~4.3.5",
"webpack": "^5.60.0"
}
}