-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.19 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
{
"name": "angular-2-voting-app",
"version": "1.0.0",
"description": "A voting app created with Angular 2 written in TypeScript, Node.js and MongoDB.",
"main": "src/main.js",
"scripts": {
"start": "node src/server/server.js",
"postinstall": "typings install && tsc",
"dev": "NODE_ENV='development' concurrently \"tsc -w\" \"nodemon src/server/server.js\"",
"test": "./node_modules/.bin/jasmine-node-karma ./src/server",
"test-app": "./node_modules/.bin/karma start --browsers Firefox --single-run",
"test-server": "./node_modules/.bin/jasmine-node-karma ./src/server",
"tsc": "tsc",
"typings": "typings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AryanJ-NYC/voting-app.git"
},
"author": "Aryan Jabbari <Aryan.Jabbari21@Qmail.cuny.edu>",
"license": "ISC",
"dependencies": {
"@angular/common": "2.1.2",
"@angular/compiler": "2.1.2",
"@angular/core": "2.1.2",
"@angular/forms": "2.1.2",
"@angular/http": "2.1.2",
"@angular/platform-browser": "2.1.2",
"@angular/platform-browser-dynamic": "2.1.2",
"@angular/router": "3.1.2",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.6",
"chart.js": "^2.4.0",
"cookie-session": "^2.0.0-alpha.2",
"core-js": "^2.4.1",
"express": "^4.13.4",
"font-awesome": "^4.7.0",
"mongoose": "^4.6.6",
"ng2-bootstrap": "^1.1.14",
"ng2-charts": "^1.4.1",
"ng2-toastr": "^1.3.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"path": "^0.12.7",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.12",
"typescript": "^2.0.8",
"typings": "^1.5.0",
"zone.js": "^0.6.17"
},
"devDependencies": {
"concurrently": "^3.1.0",
"dotenv": "^2.0.0",
"jasmine-core": "^2.5.1",
"jasmine-node-karma": "^1.6.1",
"karma": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"morgan": "^1.7.0",
"steal": "^0.16.42"
},
"bugs": {
"url": "https://github.com/AryanJ-NYC/voting-app/issues"
},
"homepage": "https://github.com/AryanJ-NYC/voting-app#readme"
}