This repository has been archived by the owner on Nov 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.11 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
{
"name": "bzlist.net",
"version": "0.8.0",
"description": "BZList is an online service providing real-time BZFlag server information.",
"homepage": "https://bzlist.net",
"license": "GPL-3.0",
"keywords": [
"bzlist",
"bzflag",
"bzflag servers"
],
"author": "The Noah (https://github.com/The-Noah)",
"repository": {
"type": "git",
"url": "https://github.com/bzlist/bzlist.net.git"
},
"bugs": {
"url": "https://github.com/bzlist/bzlist.net/issues"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"serve:ssr": "node server.js",
"build": "ng build",
"build:prod": "ng build --prod",
"build:stats": "ng build --stats-json",
"build:gh-pages": "ng build --prod --base-href /bzlist.net/",
"build:ssr": "npm run build:client-and-server-bundles && npm run webpack:server",
"build:client-and-server-bundles": "ng build --prod && ng run bzlist.net:server",
"webpack:server": "webpack --config webpack.server.config.js --progress --colors",
"deploy:gh-pages": "ngh",
"deploy:firebase": "firebase deploy",
"deploy:firebase:hosting": "firebase deploy --only hosting",
"deploy:firebase:ssr": "firebase deploy --only functions:ssr,hosting",
"stats-es5": "webpack-bundle-analyzer ./dist/browser/stats-es5.json",
"stats-es2015": "webpack-bundle-analyzer ./dist/browser/stats-es2015.json",
"test": "ng test",
"lint": "ng lint && stylelint src/**/*.scss",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^8.2.4",
"@angular/common": "^8.2.4",
"@angular/compiler": "^8.2.4",
"@angular/core": "^8.2.4",
"@angular/forms": "^8.2.4",
"@angular/platform-browser": "^8.2.4",
"@angular/platform-browser-dynamic": "^8.2.4",
"@angular/platform-server": "^8.2.4",
"@angular/pwa": "^0.801.3",
"@angular/router": "^8.2.4",
"@angular/service-worker": "^8.2.4",
"@nguniversal/express-engine": "^8.1.1",
"@nguniversal/module-map-ngfactory-loader": "^8.1.1",
"core-js": "^2.6.9",
"express": "^4.17.1",
"firebase": "^6.5.0",
"rxjs": "^6.5.3",
"socket.io-client": "^2.2.0",
"tslib": "^1.10.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.801.3",
"@angular/cli": "^8.3.2",
"@angular/compiler-cli": "^8.2.4",
"@angular/language-service": "^8.2.4",
"@types/jasmine": "^2.8.16",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.7.4",
"angular-cli-ghpages": "^0.5.3",
"codelyzer": "^5.0.1",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.1.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.4.0",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0",
"ts-loader": "^6.1.0",
"ts-node": "^8.3.0",
"tslint": "~5.11.0",
"typescript": "~3.4.5",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.8",
"ws": "^6.2.1",
"xhr2": "^0.1.4"
}
}