-
Notifications
You must be signed in to change notification settings - Fork 344
/
Copy pathpackage.json
82 lines (82 loc) · 2.58 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
{
"name": "echoes-player",
"version": "5.3.4",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:integration": "ng serve --configuration=integration",
"build": "ng build",
"build:prod": "ng build --prod",
"build:integration": "ng build --configuration=integration",
"build:env": "node config/build-env.js",
"postinstall": "npm rebuild node-sass",
"copy:homepage": "shx cp -r ./config/homepage/ ./dist/",
"copy:license": "shx cp LICENSE.md ./dist/assets",
"copy:package": "shx cp ./package.json ./dist/assets/",
"test": "ng test --watch",
"test:ci": "ng test",
"lint": "ng lint",
"lint:fix": "prettier --write ./src/**/*.ts",
"e2e": "ng e2e",
"clean": "rimraf -- node_modules",
"server:prod": "http-server ./dist -a localhost -p 4200"
},
"private": true,
"dependencies": {
"@angular-devkit/core": "^9.0.0",
"@angular/animations": "^9.0.0",
"@angular/cdk": "^9.0.0",
"@angular/common": "^9.0.0",
"@angular/compiler": "^9.0.0",
"@angular/core": "^9.0.0",
"@angular/forms": "^9.0.0",
"@angular/platform-browser": "^9.0.0",
"@angular/platform-browser-dynamic": "^9.0.0",
"@angular/router": "^9.0.0",
"@angular/service-worker": "^9.0.0",
"http-server": "0.10.0",
"memo-decorator": "1.0.2",
"node-sass": "4.12.0",
"replace": "0.3.0",
"rxjs": "6.5.5",
"sass-loader": "7.0.1",
"service-worker": "0.0.0",
"tslib": "^1.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.901.15",
"@angular/cli": "^9.0.0",
"@angular/compiler-cli": "^9.0.0",
"@angular/language-service": "^9.0.0",
"@fortawesome/fontawesome-free": "5.4.2",
"@ngrx/effects": "^9.0.0",
"@ngrx/router-store": "^9.0.0",
"@ngrx/store": "^9.0.0",
"@ngrx/store-devtools": "^9.0.0",
"@types/gapi": "0.0.35",
"@types/gapi.auth2": "0.0.46",
"@types/gapi.youtube": "3.0.34",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"bootstrap-sass": "3.3.7",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-spec-reporter": "0.0.32",
"ngrx-action-creator-factory": "0.0.1",
"ngrx-store-localstorage": "^9.0.0",
"ngx-infinite-scroll": "9.0.0",
"ngx-typeahead": "9.2.0",
"ngx-youtube-player": "9.1.0",
"prettier": "1.11.1",
"rimraf": "2.6.1",
"shx": "0.2.2",
"tslint": "~5.9.1",
"typescript": "~3.8.0"
}
}