forked from openforis/collect-earth-online
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.26 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
{
"name": "collect-earth-online",
"version": "1.0.0",
"description": "Collect Earth Online",
"keywords": [],
"author": {
"name": "Gary W. Johnson",
"email": "[email protected]"
},
"contributors": [
{
"name": "Gary W. Johnson",
"email": "[email protected]"
},
{
"name": "David S. Saah",
"email": "[email protected]"
},
{
"name": "Billy Ashmall",
"email": "[email protected]"
},
{
"name": "Githika Tondapu",
"email": "[email protected]"
},
{
"name": "Stefano Ricci",
"email": "[email protected]"
},
{
"name": "Roberto Fontanarosa",
"email": "[email protected]"
},
{
"name": "Alfonso SanchezPausDiaz",
"email": "[email protected]"
},
{
"name": "Matt Spencer",
"email": "[email protected]"
},
{
"name": "Biplov Bhandari",
"email": "[email protected]"
},
{
"name": "Oliver Baldwin Edwards",
"email": "[email protected]"
},
{
"name": "Sif Biri",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/openforis/collect-earth-online/issues"
},
"homepage": "https://github.com/openforis/collect-earth-online#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/openforis/collect-earth-online.git"
},
"private": true,
"dependencies": {
"@babel/plugin-transform-runtime": "^7.16.0",
"@ckeditor/ckeditor5-build-classic": "^19.0.0",
"@ckeditor/ckeditor5-react": "^2.1.0",
"airbnb-prop-types": "^2.16.0",
"highcharts": "^9.1.0",
"highcharts-react-official": "^3.0.0",
"lodash": "^4.17.20",
"ogr2ogr": "^1.5.0",
"ol": "^6.4.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-grid-layout": "^1.3.0",
"shpjs": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-lodash": "^3.3.4",
"buffer": "^6.0.3",
"css-loader": "^4.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.7.1",
"quick-lint-js": "^2.8.0",
"react-svg-loader": "^3.0.3",
"style-loader": "^1.2.1",
"tern": "^0.23.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"scripts": {
"build-db-all": "clojure -M:build-db build-all",
"build-db-functions": "clojure -M:build-db functions",
"webpack-dev": "webpack --config webpack.config.js --env dev",
"webpack-prod": "webpack --config webpack.config.js --env prod",
"server-dev": "clojure -M:server start -p 8080 -m dev",
"server-prod": "clojure -M:production:server start -P 8443 -m prod",
"lint-js": "find src/js -type f -exec ./node_modules/.bin/quick-lint-js --snarky {} +",
"format-js": "./node_modules/.bin/prettier --write ."
}
}