-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 2.79 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "qualtrics-map",
"version": "0.1.0",
"description": "map component",
"main": "index.tsx",
"scripts": {
"start": "webpack serve -c webpack.dev.js --open",
"build": "webpack -c webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"qualtrics",
"google maps"
],
"author": "keita-makino",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mapbox/mapbox-sdk": "^0.14.0",
"assert": "^2.1.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-node-dev": "^2.0.0",
"webpack-merge": "^5.10.0"
},
"devDependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.24.0",
"@babel/preset-env": "7.24.0",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@mui/material": "5.15.11",
"@types/mapbox__mapbox-sdk": "^0.14.0",
"@types/mapbox-gl": "^3.1.0",
"@types/node": "^20.11.24",
"@types/react": "18.2.61",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"babel-eslint": "10.1.0",
"babel-loader": "9.1.3",
"compression-webpack-plugin": "11.1.0",
"core-js": "3.36.0",
"css-loader": "6.10.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"framer-motion": "11.0.8",
"html-webpack-plugin": "5.6.0",
"husky": "9.0.11",
"license-checker": "25.0.1",
"lint-staged": "15.2.2",
"mapbox-gl": "^3.1.2",
"prettier": "3.2.5",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-hook-geolocation": "1.1.0",
"react-tracked": "^1.7.11",
"react-use": "17.5.0",
"style-loader": "3.3.4",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "5.3.3",
"webpack": "5.90.3",
"webpack-bundle-analyzer": "4.10.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.2"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": [
"lint-staged && node license/exportStatements && git add license/."
]
}
},
"lint-staged": {
"./!(dist)/*.{js,ts,jsx,tsx}": [
"eslint"
],
"./!(dist)/*.{js,ts,jsx,tsx,json,md}": [
"prettier --write",
"git add"
]
}
}