-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.49 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "j-metrics",
"description": "An open source hub for JavaScript packages and projects.",
"main": "dist/index.js",
"private": true,
"workspaces": [
"packages/*",
"./"
],
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"tsc": "tsc",
"gulp:lint": "gulp tslint",
"lint": "npm run gulp:lint -s",
"tslint": "tslint --config ./tslint.json ./packages/**/*.ts",
"webpack": "webpack",
"docs": "jsdoc2md --files ./src/**/*.ts --configure ./docs.json > ./docs/README.md",
"webpack:server": "webpack --config webpack.server.js",
"webpack:server-dev": "ts-node ./src/index.ts",
"ng": "ng",
"webview:serve": "ng serve --proxy-config proxy.conf.json",
"webview:serve-offline": "ng serve --offline --proxy-config proxy.conf.json",
"webview:build": "ng build",
"webview:test": "ng test",
"webview:lint": "ng lint",
"e2e": "ng e2e"
},
"repository": {
"type": "git",
"url": "https://github.com/jDevxyz/j-metrics"
},
"author": {
"name": "Riichi_Rusdiana#6815",
"email": "[email protected]",
"url": "https://j-dev.xyz"
},
"license": "AGPL-3.0",
"dependencies": {
"@angular/animations": "~7.2.0",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/forms": "~7.2.0",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"body-parser": "^1.19.0",
"bootstrap": "4.3.1",
"bootswatch": "^4.3.1",
"cookie-parser": "^1.4.4",
"core-js": "^2.5.4",
"express": "^4.16.4",
"express-session": "^1.16.1",
"jquery": "^3.4.1",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^5.5.8",
"passport": "^0.4.0",
"passport-discord": "^0.1.3",
"passport-oauth2": "^1.5.0",
"popper.js": "^1.15.0",
"rxjs": "~6.3.3",
"tslib": "^1.9.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "~7.3.9",
"@angular/compiler-cli": "~7.2.0",
"@angular/language-service": "~7.2.0",
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/express": "^4.16.1",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/jsonwebtoken": "^8.3.2",
"@types/mongoose": "^5.5.0",
"@types/node": "^12.0.0",
"@types/node-fetch": "^2.3.3",
"babel-loader": "^8.0.5",
"chalk": "^2.4.2",
"codelyzer": "~4.5.0",
"gulp": "^4.0.1",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^4.0.1",
"json-filter-loader": "^1.0.0",
"karma": "~4.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"lerna": "^3.13.4",
"mocha": "^6.1.4",
"ora": "^3.4.0",
"protractor": "~5.4.0",
"rimraf": "^2.6.3",
"ts-loader": "^5.4.5",
"ts-node": "~7.0.0",
"tslint": "^5.16.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "3.2.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
}
}