-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "@bengawalk/kia",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:bengawalk/kia.git",
"author": "Deep <[email protected]>",
"license": "MIT",
"scripts": {
"start": "vite serve src --mode development --host 0.0.0.0 --port 3000 --config vite.config.js",
"build": "vite build src --config vite.config.js",
"preview": "vite preview",
"publish": "gh-pages -d dist",
"prettier": "prettier --write '{src,cron}/**/*.{js,jsx}'",
"refresh-timings": "env-cmd node cron/get_timings.js"
},
"engines": {
"node": "20.10.0"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.8",
"@sentry/react": "^7.29.0",
"@sentry/tracing": "^7.29.0",
"axios": "^1.6.2",
"classnames": "^2.3.2",
"dotenv": "^16.3.1",
"env-cmd": "^10.1.0",
"fast-json-stable-stringify": "^2.1.0",
"geolib": "^3.3.3",
"gh-pages": "^6.0.0",
"google-polyline": "^1.0.3",
"i18next": "^23.5.1",
"lodash": "^4.17.21",
"mapbox-gl": "^3.7.0",
"markdown-to-jsx": "^7.3.2",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.2",
"sass": "^1.55.0",
"use-places-autocomplete": "^4.0.1",
"vite": "^4.4.9",
"vite-plugin-pwa": "^0.16.5",
"vite-plugin-radar": "^0.9.1"
},
"devDependencies": {
"eslint-plugin-prettier": "5.1.2",
"prettier": "4.0.0-alpha.8"
}
}