-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
112 lines (112 loc) · 3.46 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
{
"name": "paperhive-frontend",
"version": "1.2.2",
"description": "PaperHive frontend",
"scripts": {
"build": "npm run clean && npm-run-all -s build:*",
"build:webpack": "webpack --mode production --config webpack.config.js",
"clean": "rimraf build",
"lint:ts": "tslint app/**/*.ts",
"lint:js": "eslint test *.js",
"lint": "npm run lint:ts && npm run lint:js",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "karma start --single-run",
"test:e2e": "protractor protractor.conf.js",
"watch": "npm run clean && npm-run-all -p watch:*",
"watch:webpack": "webpack-dev-server --mode development --inline --history-api-fallback --allowed-hosts localhost.paperhive.org"
},
"author": "André Gaul <andre@paperhive.org>",
"license": "GPL-3.0",
"private": true,
"greenkeeper": {
"ignore": [
"pdfjs-dist"
]
},
"devDependencies": {
"@types/angular": "^1.6.50",
"@types/angular-animate": "^1.5.10",
"@types/angular-route": "^1.3.5",
"@types/angular-sanitize": "^1.3.7",
"@types/async": "^2.0.49",
"@types/chartist": "^0.9.42",
"@types/highlight.js": "^9.12.3",
"@types/jquery": "^3.3.6",
"@types/lodash": "^4.14.116",
"@types/mathjax": "0.0.32",
"@types/node": "^10.7.1",
"@types/rangy": "^0.0.32",
"@types/rx": "^4.1.1",
"@types/socket.io-client": "^1.4.32",
"angular-mocks": "^1.6.10",
"awesome-typescript-loader": "^5.2.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.1",
"jasmine": "^3.2.0",
"jasmine-core": "^3.2.1",
"json-loader": "^0.5.4",
"karma": "^2.0.5",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"live-server": "^1.1.0",
"mini-css-extract-plugin": "^0.4.1",
"ngtemplate-loader": "^2.0.0",
"npm-run-all": "^4.1.3",
"postcss-loader": "^2.1.6",
"protractor": "^5.4.0",
"puppeteer": "^1.7.0",
"rimraf": "^2.5.4",
"tslint": "^5.11.0",
"typescript": "^2.9.2",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.16.5",
"webpack-cli": "^2.1.5",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@types/pretty-bytes": "^4.0.1",
"angular": "^1.6.10",
"angular-animate": "^1.6.10",
"angular-chartist.js": "^4.2.3",
"angular-messages": "^1.6.10",
"angular-moment": "^1.2.0",
"angular-route": "^1.6.10",
"angular-route-segment": "^1.5.1",
"angular-sanitize": "^1.6.10",
"angular-ui-bootstrap": "^2.3.0",
"angulartics": "^1.6.0",
"angulartics-google-analytics": "^0.5.0",
"async": "^2.6.1",
"babel-runtime": "^6.18.0",
"bootstrap": "^3.3.7",
"chartist": "^0.11.0",
"dentist": "^1.0.3",
"font-awesome": "^4.7.0",
"highlight.js": "^9.8.0",
"javascript-detect-element-resize": "^0.5.3",
"jquery": "^3.3.1",
"kramed": "^0.5.6",
"lodash": "^4.17.10",
"mathjax": "^2.7.5",
"pdfjs-dist": "^1.10.100",
"pretty-bytes": "^5.0.0",
"rangy": "^1.3.0",
"roboto-fontface": "^0.9.0",
"rx": "^4.1.0",
"socket.io-client": "^2.1.1",
"srch": "^1.2.1",
"ui-leaflet": "^2.0.0",
"url": "^0.11.0"
}
}