kopia lustrzana https://github.com/FacilMap/facilmap
rodzic
04638511da
commit
872eeeec6b
|
@ -1,2 +0,0 @@
|
|||
*.iml
|
||||
.idea
|
|
@ -19,6 +19,12 @@
|
|||
"type": "git",
|
||||
"url": "https://github.com/FacilMap/facilmap.git"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"src",
|
||||
"README.md",
|
||||
"tsconfig.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"watch": "webpack --watch",
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
build/Open-SVG-Map-Icons
|
||||
build/icons.js
|
||||
build/client.js
|
||||
*.iml
|
||||
.idea
|
|
@ -18,6 +18,14 @@
|
|||
"url": "https://github.com/FacilMap/facilmap.git"
|
||||
},
|
||||
"main": "./entry.js",
|
||||
"files": [
|
||||
"dist",
|
||||
"src",
|
||||
"static",
|
||||
"iframe-test.html",
|
||||
"README.md",
|
||||
"tsconfig.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"clean": "rimraf dist",
|
||||
|
|
|
@ -21,6 +21,16 @@
|
|||
"type": "git",
|
||||
"url": "https://github.com/FacilMap/facilmap.git"
|
||||
},
|
||||
"files": [
|
||||
"assets",
|
||||
"dist",
|
||||
"src",
|
||||
"./download-icons.ts",
|
||||
"./example.html",
|
||||
"./icontest.html",
|
||||
"README.md",
|
||||
"tsconfig.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"build-module": "webpack --config-name module",
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
*.iml
|
||||
.idea
|
|
@ -17,6 +17,11 @@
|
|||
"type": "git",
|
||||
"url": "https://github.com/FacilMap/facilmap.git"
|
||||
},
|
||||
"files": [
|
||||
"src",
|
||||
"README.md",
|
||||
"tsconfig.json"
|
||||
],
|
||||
"scripts": {
|
||||
"start": "npm run deps && npm run server",
|
||||
"deps": "npm install",
|
||||
|
@ -27,7 +32,7 @@
|
|||
"lint": "eslint src/**/*.ts"
|
||||
},
|
||||
"bin": {
|
||||
"facilmap-server": "src/server.ts"
|
||||
"facilmap-server": "ts-node --transpile-only src/server.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mapbox/polyline": "^1.1.1",
|
||||
|
|
|
@ -13,9 +13,13 @@
|
|||
"type": "git",
|
||||
"url": "https://github.com/FacilMap/facilmap.git"
|
||||
},
|
||||
"files": [
|
||||
"src",
|
||||
"README.md",
|
||||
"tsconfig.json"
|
||||
],
|
||||
"dependencies": {
|
||||
"@types/geojson": "^7946.0.7"
|
||||
},
|
||||
"private": true,
|
||||
"devDependencies": {}
|
||||
}
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
"outDir": "dist",
|
||||
"moduleResolution": "node",
|
||||
"noErrorTruncation": true,
|
||||
"skipLibCheck": true
|
||||
"skipLibCheck": true,
|
||||
"noEmit": true
|
||||
}
|
||||
}
|
|
@ -21,6 +21,11 @@
|
|||
"types": "tsc --noEmit src/*",
|
||||
"lint": "eslint src/*"
|
||||
},
|
||||
"files": [
|
||||
"src",
|
||||
"README.md",
|
||||
"tsconfig.json"
|
||||
],
|
||||
"dependencies": {
|
||||
"cheerio": "^1.0.0-rc.5",
|
||||
"dompurify": "^2.2.7",
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
"moduleResolution": "node",
|
||||
"noErrorTruncation": true,
|
||||
"skipLibCheck": true,
|
||||
"experimentalDecorators": true
|
||||
"experimentalDecorators": true,
|
||||
"noEmit": true
|
||||
},
|
||||
"include": ["src/**/*"]
|
||||
}
|
Ładowanie…
Reference in New Issue