-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
124 lines (124 loc) · 3.68 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
116
117
118
119
120
121
122
123
124
{
"name": "online-board",
"description": "Create and share interactive boards online",
"version": "1.14.0",
"license": "MIT",
"homepage": "https://online-board.firebaseapp.com",
"author": "andreasonny <[email protected]>",
"contributors": [
{
"name": "Claudia Donea",
"email": "[email protected]"
},
{
"name": "Driskyle",
"url": "http://driskyle.com",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/andreasonny83/online-board.git"
},
"bugs": {
"url": "https://github.com/andreasonny83/online-board/issues"
},
"scripts": {
"start": "webpack-dev-server --port=4200",
"commit": "git-cz",
"build": "NODE_ENV='production' webpack -p",
"prebuild": "rm -rf ./dist",
"predeploy": "npm run build",
"deploy": "firebase deploy",
"tslint": "tslint",
"lint": "npm run tslint \"src/**/*.ts\"",
"test": "karma start ./karma.conf.js",
"test:ci": "karma start ./karma.conf.js --browsers PhantomJS --single-run",
"e2e": "protractor ./protractor.conf.js",
"pree2e": "webdriver-manager update",
"e2e:ci": "protractor ./protractor.conf.ci.js",
"startserver": "lite-server ./dist",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"protractor": "protractor",
"webpack": "webpack"
},
"private": true,
"dependencies": {
"@angular/animations": "4.2.2",
"@angular/common": "4.2.2",
"@angular/compiler": "4.2.2",
"@angular/core": "4.2.2",
"@angular/forms": "4.2.2",
"@angular/http": "4.2.2",
"@angular/material": "2.0.0-beta.6",
"@angular/platform-browser": "4.2.2",
"@angular/platform-browser-dynamic": "4.2.2",
"@angular/router": "4.2.2",
"angular2-cookie-law": "1.3.0",
"angularfire2": "4.0.0-rc.1",
"classlist.js": "1.1.20150312",
"core-js": "2.4.1",
"firebase": "4.1.2",
"install": "0.10.1",
"intl": "1.2.5",
"npm": "5.0.3",
"rxjs": "5.4.0",
"web-animations-js": "2.2.5",
"zone.js": "0.8.12"
},
"devDependencies": {
"@angular/cli": "1.1.1",
"@angular/compiler-cli": "4.2.2",
"@types/jasmine": "2.5.52",
"@types/node": "7.0.31",
"autoprefixer": "7.1.1",
"codelyzer": "3.0.1",
"commitizen": "2.9.6",
"coveralls": "2.13.1",
"css-loader": "0.28.4",
"cssnano": "3.10.0",
"cz-conventional-changelog": "2.0.0",
"exports-loader": "0.6.4",
"extract-text-webpack-plugin": "2.1.2",
"file-loader": "0.11.2",
"firebase-tools": "3.9.1",
"html-webpack-plugin": "2.28.0",
"istanbul-instrumenter-loader": "2.0.0",
"jasmine-core": "2.6.3",
"jasmine-spec-reporter": "4.1.0",
"json-loader": "0.5.4",
"karma": "1.7.0",
"karma-chrome-launcher": "2.1.1",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "1.3.0",
"karma-firefox-launcher": "1.0.1",
"karma-jasmine": "1.1.0",
"karma-jasmine-html-reporter": "0.2.2",
"karma-phantomjs-launcher": "1.0.4",
"karma-sourcemap-loader": "0.3.7",
"lite-server": "2.3.0",
"node-sass": "4.5.3",
"offline-plugin": "4.8.1",
"phantomjs-prebuilt": "2.1.14",
"postcss-loader": "2.0.5",
"postcss-url": "5.1.2",
"protractor": "5.1.2",
"raw-loader": "0.5.1",
"sass-loader": "6.0.5",
"script-loader": "0.7.0",
"source-map-loader": "0.2.1",
"style-loader": "0.18.2",
"ts-node": "3.0.6",
"tslint": "5.4.3",
"typescript": "2.3.4",
"url-loader": "0.5.9",
"webpack": "2.6.1",
"webpack-dev-server": "2.4.5",
"webpack-pwa-manifest": "2.1.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}