-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.24 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.24 KB
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
{
"name": "devtools",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"cp:manifest": "cp manifest.json dist/",
"start:chrome": "concurrently -r \"yarn build:watch:chrome\" \"webpack -w --config webpack.shells.js\"",
"build:watch:chrome": "ng build --watch --progress false --output-path dist/shells/chrome/devtools",
"build": "yarn run build:chrome",
"build:chrome": "ng build --prod && webpack --config webpack.shells.js -p",
"test": "ng test",
"lint": "ng lint && prettier --list-different \"src/**/*.ts\"",
"format": "prettier --write \"{src,shells}/**/*.ts\"",
"webpack": "webpack"
},
"private": true,
"dependencies": {
"@angular/animations": "~7.2.15",
"@angular/common": "~7.2.15",
"@angular/compiler": "~7.2.15",
"@angular/core": "~7.2.15",
"@angular/forms": "~7.2.15",
"@angular/platform-browser": "~7.2.15",
"@angular/platform-browser-dynamic": "~7.2.15",
"@angular/router": "~7.2.15",
"@ngxs/logger-plugin": "~21.0.0",
"@ngxs/store": "~3.4.3",
"core-js": "^3.1.4",
"rxjs": "~6.5.5",
"tslib": "^1.9.3",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.9",
"@angular/cli": "~7.3.9",
"@angular/compiler-cli": "~7.2.15",
"@angular/language-service": "~7.2.15",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@types/chrome": "~0.0.85",
"@types/jasmine": "~3.3.12",
"@types/jasminewd2": "~2.0.6",
"@types/node": "~11.13.5",
"chokidar": "^2.1.6",
"clean-webpack-plugin": "^2.0.2",
"codelyzer": "~5.1.0",
"concurrently": "^4.1.0",
"copy": "^0.3.2",
"copy-webpack-plugin": "^5.0.3",
"filemanager-webpack-plugin": "^2.0.5",
"husky": "^1.3.1",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.5",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "~1.4.2",
"lint-staged": "^8.2.1",
"prettier": "^1.18.0",
"protractor": "~5.4.2",
"ts-loader": "^5.4.4",
"ts-node": "~8.3.0",
"tslint": "~5.16.0",
"typescript": "~3.4.5",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.4"
}
}