-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.24 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
{
"name": "demokratia",
"version": "0.2.0",
"description": "Voting system for IEEEsb elections.",
"main": "server.js",
"scripts": {
"lint": "eslint . --ignore-path=.gitignore && ng lint",
"ng": "ng",
"watch-front": "ng build --watch --poll=1000",
"watch-back": "nodemon --ignore dist/ --ignore frontend/",
"dev": "concurrently --kill-others --raw --default-input-target 1 \"npm run watch-front\" \"npm run watch-back\"",
"build": "ng build --no-progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Repo-IEEEsb/demokratia.git"
},
"author": "Rama Universitaria de Estudiantes del IEEE de Madrid",
"license": "MIT",
"bugs": {
"url": "https://github.com/Repo-IEEEsb/demokratia/issues"
},
"homepage": "https://github.com/Repo-IEEEsb/demokratia#readme",
"dependencies": {
"@angular/animations": "^8.2.9",
"@angular/cdk": "^8.2.2",
"@angular/common": "^8.2.9",
"@angular/compiler": "^8.2.9",
"@angular/core": "^8.2.9",
"@angular/forms": "^8.2.9",
"@angular/material": "^8.2.2",
"@angular/platform-browser": "^8.2.9",
"@angular/platform-browser-dynamic": "^8.2.9",
"@angular/router": "^8.2.9",
"@fortawesome/angular-fontawesome": "^0.5.0",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@ng-bootstrap/ng-bootstrap": "^5.1.1",
"angular-ieeesb-lib": "^1.1.9",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"celebrate": "^10.0.1",
"connect-mongo": "^3.0.0",
"core-js": "^3.2.1",
"crypto-js": "^3.1.9-1",
"express": "^4.17.1",
"express-session": "^1.16.2",
"mongoose": "^5.7.5",
"mongoose-float": "1.0.4",
"morgan": "^1.9.1",
"rxjs": "^6.5.3",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.8",
"@angular/cli": "^8.3.8",
"@angular/compiler-cli": "^8.2.9",
"@angular/language-service": "^8.2.9",
"@types/jasmine": "~3.4.2",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^12.7.11",
"codelyzer": "^5.0.1",
"concurrently": "^5.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"nodemon": "^1.19.3",
"ts-node": "~8.4.1",
"tslint": "~5.20.0",
"typescript": "3.4.5"
}
}