-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·67 lines (67 loc) · 2.37 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
{
"name": "commons-hub-2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html --hmr-port 1235",
"serve-geocode-search": "parcel src/geocode-search.html --hmr-port 1235",
"build": "npm run clear-dist && parcel build --out-dir ~/html/commons-hub-frontend --public-url /commons-hub-frontend/ src/index.html src/GeocodeSearchWidget.tsx",
"build-local": "npm run clear-dist-local && parcel build --public-url http://localhost:1234 src/index.html src/GeocodeSearchWidget.tsx",
"clear-dist": "rimraf \"~/html/commons-hub-frontend/*\"",
"clear-dist-local": "rimraf \"./dist/*\"",
"postbuild": "react-snap",
"trans:compile": "tsc -p . --target ES6 --module es6 --jsx preserve --outDir src/extracted",
"trans:extract": "babel ./src/extracted",
"trans:manage": "node src/translations/manageTranslations.js",
"trans:clean": "rm -r ./src/extracted",
"trans": "npm run trans:compile && npm run trans:extract && npm run trans:manage && npm run trans:clean"
},
"reactSnap": {
"source": "dist",
"publicPath": "/commons-hub-frontend/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^12.6.8",
"commons-api": "github:wielebenwir/commons-api#v0.7.3-beta",
"cross-fetch": "^3.0.4",
"formik": "^1.5.8",
"history": "^4.9.0",
"i18next": "^17.1.0",
"leaflet": "^1.5.1",
"leaflet.markercluster": "^1.4.1",
"moment": "^2.24.0",
"query-string": "^6.8.2",
"react": "^16.8.6",
"react-datepicker": "^2.8.0",
"react-dom": "^16.8.6",
"react-i18next": "^10.13.1",
"react-native": "^0.60.4",
"react-snap": "^1.23.0",
"redux-first-router": "^2.1.3",
"redux-first-router-link": "^2.1.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.5",
"rimraf": "^3.0.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.6.3",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"@types/react-redux": "^7.1.1",
"@types/redux": "^3.6.0",
"@types/redux-first-router": "^2.1.3",
"@types/styled-components": "^4.1.18",
"babel-plugin-react-intl": "^4.1.20",
"babel-preset-es2015": "^6.24.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.2.1",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"typescript": "^3.5.3"
}
}