-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
158 lines (158 loc) · 5.78 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "swellrt-pad",
"version": "0.0.1",
"description": "Descentralized collaborative editor",
"keywords": [
"angular2",
"webpack",
"typescript"
],
"author": "Pablo Ojanguren and David Llop",
"homepage": "https://github.com/P2Pvalue/swellrt-pad",
"license": "AGPL-3.0",
"scripts": {
"postinstall": "typings install",
"rimraf": "rimraf",
"tslint": "tslint",
"typedoc": "typedoc",
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server",
"webdriver-manager": "webdriver-manager",
"protractor": "protractor",
"clean": "npm cache clean && npm run rimraf -- node_modules doc coverage dist",
"clean:dist": "npm run rimraf -- dist",
"preclean:install": "npm run clean",
"clean:install": "npm set progress=false && npm install",
"preclean:start": "npm run clean",
"clean:start": "npm start",
"watch": "npm run watch:dev",
"watch:dev": "npm run build:dev -- --watch",
"watch:dev:hmr": "npm run watch:dev -- --hot",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"watch:prod": "npm run build:prod -- --watch",
"build": "npm run build:dev",
"prebuild:dev": "npm run clean:dist",
"build:dev": "webpack --config config/webpack.dev.js --progress --profile --colors --display-error-details --display-cached",
"prebuild:prod": "npm run clean:dist",
"build:prod": "webpack --config config/webpack.prod.js --progress --profile --colors --display-error-details --display-cached --bail",
"github-deploy": "npm run github-deploy:dev",
"github-deploy:dev": "webpack --config config/webpack.github-deploy.js --progress --profile --colors --display-error-details --display-cached --github-dev",
"github-deploy:prod": "webpack --config config/webpack.github-deploy.js --progress --profile --colors --display-error-details --display-cached --github-prod",
"server": "npm run server:dev",
"server:dev": "webpack-dev-server --config config/webpack.dev.js --progress --profile --colors --watch --display-error-details --display-cached --content-base src/",
"server:dev:hmr": "npm run server:dev -- --inline --hot",
"server:prod": "http-server dist --cors",
"webdriver:update": "npm run webdriver-manager update",
"webdriver:start": "npm run webdriver-manager start",
"lint": "npm run tslint \"src/**/*.ts\"",
"pree2e": "npm run webdriver:update -- --standalone",
"e2e": "npm run protractor",
"e2e:live": "npm run e2e -- --elementExplorer",
"test": "karma start",
"ci": "npm run lint && npm test && npm run e2e",
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./src/",
"start": "npm run server:dev",
"start:hmr": "npm run server:dev:hmr",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/platform-server": "2.0.0",
"@angular/router": "3.0.0",
"angular2-clipboard": "1.0.1",
"angular2-template-loader": "^0.4.0",
"angular2-ui-switch": "1.1.0",
"bootstrap": "^3.3.7",
"bootstrap-material-design": "^0.5.10",
"bootstrap-sass": "^3.3.7",
"core-js": "^2.4.1",
"d3": "^4.4.0",
"highcharts": "^4.2.7",
"http-server": "^0.9.0",
"ie-shim": "^0.1.0",
"moment": "^2.17.0",
"ng2-bootstrap": "^1.1.16",
"ng2-dropdown": "^0.0.12",
"ng2-modal": "0.0.20",
"ng2-sharebuttons": "^1.1.0",
"rxjs": "5.0.0-beta.12",
"zone.js": "^0.6.23"
},
"devDependencies": {
"@angularclass/hmr": "^1.0.1",
"@angularclass/hmr-loader": "^1.0.1",
"angular2-hmr": "~0.8.0",
"autoprefixer": "^6.4.0",
"awesome-typescript-loader": "2.0.1",
"codelyzer": "~0.0.21",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.25.0",
"css-to-string-loader": "^0.1.1",
"es6-promise-loader": "^1.0.1",
"esformatter-collapse-objects": "^0.5.1",
"esformatter-literal-notation": "^1.0.1",
"esformatter-parseint": "^1.0.3",
"esformatter-quote-props": "^2.0.0",
"esformatter-quotes": "^1.1.0",
"esformatter-remove-trailing-commas": "^1.0.1",
"esformatter-semicolons": "^1.1.2",
"esformatter-spaced-lined-comment": "^2.0.1",
"esformatter-var-each": "^2.1.0",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.1",
"file-loader": "^0.9.0",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "^2.21.0",
"imports-loader": "^0.6.5",
"istanbul-instrumenter-loader": "^1.0.0",
"json-loader": "^0.5.4",
"karma": "^1.1.2",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "1.8.0",
"node-sass": "^3.8.0",
"parse5": "^2.1.5",
"postcss-loader": "^0.10.1",
"protractor": "^4.0.8",
"raw-loader": "0.5.1",
"remap-istanbul": "^0.6.3",
"resolve-url-loader": "^1.6.0",
"rimraf": "^2.5.2",
"sass-loader": "^4.0.0",
"source-map-loader": "^0.1.5",
"to-string-loader": "^1.1.4",
"ts-helpers": "1.1.1",
"ts-node": "^1.3.0",
"tslint": "^3.7.1",
"tslint-loader": "^2.1.3",
"typedoc": "^0.4.4",
"typescript": "^2.0.2",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-md5-hash": "^0.0.5",
"webpack-merge": "^0.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/P2Pvalue/swellrt-pad.git"
},
"bugs": {
"url": "https://github.com/P2Pvalue/swellrt-pad/issues"
},
"engines": {
"node": ">= 4.2.1",
"npm": ">= 3"
}
}