-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.62 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
{
"private": true,
"scripts": {
"lerna": "lerna",
"test": "lerna run test --stream --parallel",
"test:watch": "lerna run test:watch",
"test:coverage": "lerna run test:coverage",
"test:ci": "yarn test:coverage && cat ./packages/webgis4u/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"start": "lerna run start --stream --parallel",
"build": "lerna run build --stream",
"build:ci": "lerna run build:ci --stream",
"build:docs": "lerna run build:docs --stream --parallel",
"lint": "lerna run lint --stream --parallel",
"before_deploy:ci": "lerna run before_deploy:ci --stream --parallel",
"deploy:ci": "lerna publish --loglevel verbose --yes --create-release github"
},
"repository": {
"type": "git",
"url": "git+https://github.com/environment-agency-austria/webgis4u.git"
},
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/environment-agency-austria/webgis4u/issues"
},
"homepage": "https://github.com/environment-agency-austria/webgis4u#readme",
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"post-merge": "yarnhook",
"post-checkout": "yarnhook",
"post-rewrite": "yarnhook",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^1.0.0",
"coveralls": "^3.0.2",
"css-loader": "^3.0.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-oceanjs": "^0.1.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-canvas-mock": "^1.1.0",
"jsdoc": "^3.5.5",
"lerna": "^3.18.4",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"resolve-url-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"yarnhook": "^0.4.3"
},
"dependencies": {
"ol": "^5.3.0",
"proj4": "^2.5.0"
}
}