-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.81 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
{
"name": "figmap",
"version": "1.0.0",
"description": "This plugin template uses Typescript. If you are familiar with Javascript, Typescript will look very familiar. In fact, valid Javascript code is already valid Typescript code.",
"license": "ISC",
"scripts": {
"build": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode=production",
"build:watch": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode=development --watch",
"prettier:format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,json}' "
},
"dependencies": {
"@mapbox/mapbox-gl-geocoder": "^5.0.2",
"@math.gl/core": "^4.0.1",
"gpxparser": "^3.0.8",
"mapbox-gl": "^3.2.0",
"mixpanel-figma": "^2.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.2",
"viewport-mercator-project": "^7.0.1"
},
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "^0.15.0",
"@figma/plugin-typings": "^1.89.0",
"@types/mapbox__mapbox-gl-geocoder": "^5.0.0",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"bootstrap": "^4.5.2",
"css-loader": "^3.1.0",
"dotenv-webpack": "^8.1.0",
"eslint": "^8.57.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.2",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"react-map-gl": "^7.1.7",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"typescript": "^5.4.3",
"typescript-eslint": "^7.5.0",
"url-loader": "^2.1.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.6"
},
"engines": {
"npm": ">=8.19.4 <10.5.2",
"node": ">=18.20.2 <20.12.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css,json}": [
"prettier --write",
"git add"
]
}
}