-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 1.93 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
{
"name": "busy-hours",
"version": "0.0.1",
"description": "OpenStreetMap web editor for public transport hours",
"main": "src/index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"doc": "npm run doc:js:check && npm run doc:js",
"doc:js": "documentation build ./src -f html -o doc/",
"doc:js:check": "documentation lint ./src",
"i18n:build": "i18nline export",
"i18n:fix": "node fix_i18n_files.js",
"i18n:clean": "find ./src/config/locales -type f -not -name 'en.json' -delete",
"clean": "rm -rf build/*"
},
"repository": {
"type": "git",
"url": "https://github.com/Jungle-Bus/Busy-Hours.git"
},
"keywords": [
"openstreetmap",
"public transport",
"editor",
"osm",
"hours"
],
"author": "Adrien PAVIE & Jungle Bus",
"license": "AGPL",
"dependencies": {
"@date-io/date-fns": "^1.3.9",
"@material-ui/core": "^4.3.3",
"@material-ui/pickers": "^3.2.3",
"date-fns": "^2.0.0",
"fast-deep-equal": "^2.0.1",
"jungle_bus_web_components": "^1.0.1",
"mdi-react": "^5.4.0",
"object-hash": "^1.3.1",
"osm-auth": "^1.0.2",
"osm-request": "^1.2.5",
"osmtogeojson": "^3.0.0-beta.3",
"pubsub-js": "^1.7.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "^5.0.1",
"react-scripts": "2.1.5",
"react-three-state-checkbox": "^1.2.2",
"transport-hours": "git+https://github.com/Jungle-Bus/transport-hours-js.git",
"typeface-roboto": "0.0.75",
"xml2js": "^0.4.19"
},
"devDependencies": {
"assert": "^1.5.0",
"documentation": "^9.3.1",
"i18nline": "^2.0.1"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"i18n": {
"out": "src/config/locales/en.json",
"directories": [
"src/"
]
},
"homepage": "."
}