This repository has been archived by the owner on Jul 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.61 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
{
"name": "brewser",
"description": "A Beer catalog, that allows people to browse brews around the world. Sit back, and have a beer!",
"version": "2.0.0",
"main": "src/index.js",
"scripts": {
"express": "PORT=8080 nodemon server.js",
"ng": "ng",
"start": "PORT=8080 nodemon server.js | ng serve",
"build": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"update:cli": "ng update @angular/cli",
"lintfix": "tslint --fix --project=\"./\""
},
"private": true,
"dependencies": {
"@angular/animations": "^6.0.0-beta.4",
"@angular/common": "^6.0.0-beta.4",
"@angular/compiler": "^6.0.0-beta.4",
"@angular/core": "^6.0.0-beta.4",
"@angular/forms": "^6.0.0-beta.4",
"@angular/http": "^6.0.0-beta.4",
"@angular/platform-browser": "^6.0.0-beta.4",
"@angular/platform-browser-dynamic": "^6.0.0-beta.4",
"@angular/router": "^6.0.0-beta.4",
"body-parser": "^1.18.3",
"brewerydb-node": "0.0.1",
"compression": "^1.7.4",
"consign": "^0.1.6",
"core-js": "^2.4.1",
"express": "^4.16.2",
"flamework": "^2.0.0-beta.1",
"jquery": "^3.5.0",
"moment": "^2.24.0",
"ngx-order-pipe": "^1.2.1",
"pace": "^0.0.4",
"pace-js": "^1.0.2",
"popper.js": "^1.15.0",
"rxjs": "6.0.0",
"tslint-config-airbnb": "^5.11.1",
"zone.js": "^0.8.19"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.8.0",
"@angular/cli": "^6.2.9",
"@angular/compiler-cli": "~6.0.0-beta.2",
"@angular/language-service": "~6.0.0-beta.2",
"@types/jasmine": "^3.3.12",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^11.13.4",
"codelyzer": "^4.5.0",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "latest",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jasmine-core": "^2.9.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^2.0.5",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^1.4.3",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"nodemon": "^1.18.11",
"protractor": "^5.4.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "~2.7.0"
},
"keywords": [
"ALIA",
"BrewseryDB",
"Brewser",
"Beers"
],
"author": "Christhopher Lion",
"license": "GNU",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:itsmelion/brewser.git"
},
"bugs": {
"url": "https://github.com/itsmelion/brewser/issues"
},
"homepage": "https://gitlab.com/itsmelion/brewser#README"
}