-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 3.14 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": "openstreettouch",
"version": "0.1.7",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"babel-plugin-macros": "^3.1.0",
"dotenv": "^16.4.5",
"leaflet": "^1.9.4",
"npm-run-all": "^4.1.5",
"purecss": "^3.0.0",
"react": "^18.2.0",
"react-accessible-treeview": "^2.9.1",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-leaflet": "^4.2.1",
"react-modal": "^3.16.1",
"react-router-dom": "^6.21.3",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build ",
"builddev": "cross-env GENERATE_SOURCEMAP=true react-scripts build",
"webview": "python osm2touch.py --debug",
"startview": "cross-env npm-run-all build webview",
"package": "pyinstaller Osm2Touch.spec",
"buildview": "npm-run-all clean build package",
"builddebian": "npm-run-all clean build packagedebian build-deb-debian",
"buildubuntu": "npm-run-all clean build packageubuntu build-deb-ubuntu",
"packagedebian": "pyinstaller DebianOsm2Touch.spec",
"packageubuntu": "pyinstaller LinuxOsm2Touch.spec",
"build-deb-debian": "npm-run-all mkdirdebian cpdebian clogdebian dpkg-debian checkdebian",
"build-deb-ubuntu": "npm-run-all mkdirubuntu cpubuntu clogubuntu dpkg-ubuntu checkubuntu",
"mkdirdebian": "mkdir -p ./package/debian/openstreettouch-debian/usr/bin/",
"mkdirubuntu": "mkdir -p ./package/ubuntu/openstreettouch-ubuntu/usr/bin/",
"clogdebian": "git-changelog -x -s v0.6.0 -f `git tag | tail -n 1` | gzip > ./package/debian/openstreettouch-debian/usr/share/doc/openstreettouch-debian/changelog.gz",
"cpdebian": "cp ./dist/openstreettouch-debian ./package/debian/openstreettouch-debian/usr/bin/",
"dpkg-debian": "dpkg-deb -v --root-owner-group --build ./package/debian/openstreettouch-debian ./dist/openstreettouch-debian-${npm_package_version}.deb",
"checkdebian": "lintian ./dist/openstreettouch-debian-${npm_package_version}.deb",
"clogubuntu": "git-changelog -x -s v0.6.0 -f `git tag | tail -n 1` | gzip > ./package/ubuntu/openstreettouch-ubuntu/usr/share/doc/openstreettouch-ubuntu/changelog.gz",
"cpubuntu": "cp ./dist/openstreettouch-ubuntu ./package/ubuntu/openstreettouch-ubuntu/usr/bin/",
"dpkg-ubuntu": "dpkg-deb -v --root-owner-group --build ./package/ubuntu/openstreettouch-ubuntu ./dist/openstreettouch-ubuntu-${npm_package_version}.deb",
"checkubuntu": "lintian ./dist/openstreettouch-ubuntu-${npm_package_version}.deb",
"test": "react-scripts test",
"eject": "react-scripts eject",
"clean": "rm -rf build dist"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-transform-private-property-in-object": "^7.23.4",
"cross-env": "^7.0.3"
}
}