-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 979 Bytes
/
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
{
"name": "colombia-mapper",
"version": "1.0.0",
"private": true,
"description": "",
"scripts": {
"tsc": "tsc --noEmit",
"dev": "parcel ./src/index.html --port 4000 --open",
"lint": "tslint --project .",
"clean": "rimraf ./dist",
"build": "yarn clean && yarn tsc && yarn lint && parcel build ./src/index.html"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/leaflet": "1.4.4",
"@types/node": "^14.0.5",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"less": "3.9.0",
"parcel-bundler": "1.12.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "2.6.3",
"tslint": "5.17.0",
"typescript": "3.5.1"
},
"dependencies": {
"config.js": "^0.1.0",
"es6-object-assign": "^1.1.0",
"leaflet": "1.5.1",
"serialize-to-js": "^3.0.1",
"ts-polyfill": "3.5.1",
"url-search-params-polyfill": "6.0.0"
},
"resolutions": {
"elliptic": "^6.5.3"
}
}