This repository was archived by the owner on Sep 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.96 KB
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
{
"name": "rcv-sim",
"version": "0.0.0",
"description": "Interactive simulation of the ranked-choice voting process",
"license": "MIT",
"contributors": [
{
"name": "Jeff Guo"
},
{
"name": "Donald Peat"
},
{
"name": "Drew Moore"
}
],
"repository": {
"url": "https://github.com/RCVSim/client"
},
"scripts": {
"start": "webpack-dev-server --inline --hot",
"build": "webpack",
"postinstall": "typings install",
"test": "node --max-old-space-size=4096 node_modules/karma/bin/karma start",
"clean-idea": "rimraf src/**/*.js.map src/**/*.js"
},
"dependencies": {
"@angular/common": "^2.0.0-rc.1",
"@angular/compiler": "^2.0.0-rc.1",
"@angular/core": "^2.0.0-rc.1",
"@angular/http": "^2.0.0-rc.1",
"@angular/platform-browser": "^2.0.0-rc.1",
"@angular/platform-browser-dynamic": "^2.0.0-rc.1",
"@angular2-material/button": "2.0.0-alpha.5",
"@angular2-material/card": "2.0.0-alpha.5",
"@angular2-material/checkbox": "2.0.0-alpha.5",
"@angular2-material/core": "2.0.0-alpha.5",
"@angular2-material/icon": "^2.0.0-alpha.5",
"@angular2-material/input": "2.0.0-alpha.5",
"@angular2-material/list": "2.0.0-alpha.5",
"@angular2-material/progress-bar": "2.0.0-alpha.5",
"@angular2-material/progress-circle": "2.0.0-alpha.5",
"@angular2-material/radio": "2.0.0-alpha.5",
"@angular2-material/sidenav": "2.0.0-alpha.5",
"@angular2-material/toolbar": "2.0.0-alpha.5",
"@ngrx/core": "^1.0.0",
"@ngrx/effects": "^1.0.0",
"@ngrx/router": "^1.0.0-beta.1",
"@ngrx/store": "^2.0.0",
"core-js": "^2.3.0",
"d3": "^3.5.16",
"es6-promise": "^3.1.2",
"es6-shim": "0.35.0",
"lodash": "^4.9.0",
"moment": "^2.12.0",
"ngrx-store-logger": "^0.1.4",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.6",
"seamless-immutable": "^6.1.0",
"zone.js": "0.6.12"
},
"devDependencies": {
"awesome-typescript-loader": "^0.17.0",
"concurrently": "^2.0.0",
"css-loader": "^0.23.1",
"del": "^2.0.2",
"extract-text-webpack-plugin": "^1.0.1",
"gulp": "^3.9.0",
"gulp-sass": "^2.3.1",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.17.0",
"jasmine-core": "^2.4.1",
"jasmine-webpack-plugin": "^0.1.1",
"json-server": "^0.8.10",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-jasmine": "^0.3.8",
"karma-mocha-reporter": "^2.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"live-server": "^0.9.2",
"mocha": "^2.4.5",
"null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"sass-loader": "^3.2.0",
"source-map": "^0.5.5",
"ts-helpers": "^1.1.1",
"tsimmutable": "^0.4.1",
"typescript": "1.8.9",
"typings": "^1.0.4",
"uglify-js": "^2.6.2",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.10.0",
"webpack-stream": "^3.2.0"
}
}