-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
101 lines (101 loc) · 2.9 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
{
"name": "veinapp",
"version": "1.0.0",
"description": "Map your vicinity",
"license": "MIT",
"repository": "github:adab1ts/veinapp",
"keywords": [
"angular",
"firebase",
"angular-material"
],
"author": "Adab1ts <info@adabits.org> (https://www.adabits.org)",
"contributors": [
"Klaudia Alvarez <klaudia@adabits.org> (https://github.com/laklau)",
"Carles Muiños <carles@adabits.org> (https://github.com/zuzust)",
"Carlos Matheu <info@plastikaweb.org> (https://github.com/plastikaweb)"
],
"private": true,
"scripts": {
"postinstall": "npm install enhanced-resolve@3.3.0",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"test:ci": "ng test --single-run",
"lint": "ng lint",
"e2e": "ng e2e",
"precommit": "run-s lint test:ci e2e",
"db:populate": "ts-node ./db/db-populate.ts",
"db:export": "ts-node ./db/db-export.ts"
},
"dependencies": {
"@angular/common": "2.4.7",
"@angular/compiler": "2.4.7",
"@angular/core": "2.4.7",
"@angular/flex-layout": "2.0.0-rc.1",
"@angular/forms": "2.4.7",
"@angular/http": "2.4.7",
"@angular/material": "2.0.0-beta.2",
"@angular/platform-browser": "2.4.7",
"@angular/platform-browser-dynamic": "2.4.7",
"@angular/platform-server": "2.4.7",
"@angular/router": "3.4.7",
"@covalent/core": "1.0.0-beta.2-1",
"@ngrx/core": "1.2.0",
"@ngrx/effects": "2.0.0",
"@ngrx/router-store": "1.2.5",
"@ngrx/store": "2.2.1",
"@ngrx/store-devtools": "3.2.3",
"angularfire2": "2.0.0-beta.7",
"core-js": "2.4.1",
"firebase": "3.6.9",
"geofire": "4.1.2",
"hammerjs": "2.0.8",
"intl": "1.2.5",
"leaflet": "1.1.0",
"reselect": "2.5.4",
"rxjs": "5.1.1",
"ts-helpers": "1.1.2",
"web-animations-js": "2.2.2",
"zone.js": "0.7.7"
},
"devDependencies": {
"@angular/cli": "1.0.0-rc.2",
"@angular/compiler-cli": "2.4.7",
"@types/babyparse": "0.0.30",
"@types/hammerjs": "2.0.34",
"@types/jasmine": "2.5.42",
"@types/leaflet": "1.0.63",
"@types/node": "6.0.63",
"babyparse": "0.4.6",
"codelyzer": "3.0.0-beta.0",
"commitizen": "2.9.5",
"cz-conventional-changelog": "1.2.0",
"husky": "0.13.1",
"jasmine-core": "2.5.2",
"jasmine-spec-reporter": "3.2.0",
"karma": "1.4.1",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "0.2.0",
"karma-jasmine": "1.1.0",
"karma-jasmine-html-reporter": "0.2.2",
"ngrx-store-freeze": "0.1.9",
"node-sass": "3.8.0",
"npm-run-all": "4.0.1",
"protractor": "5.1.1",
"request": "2.81.0",
"request-promise-native": "1.0.4",
"sass-loader": "4.1.1",
"ts-node": "2.1.0",
"tslint": "4.5.0",
"typescript": "2.1.6",
"yargs": "8.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}