-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "arca-www",
"packageManager": "[email protected]",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "prettier --check .",
"lint:fix": "prettier --write --list-different .",
"serve": "yarn server:start",
"stop": "yarn server:stop",
"restart": "yarn server:restart",
"server:start": "yarn build && pm2 start ecosystem.config.js",
"server:stop": "pm2 stop ecosystem.config.js",
"server:restart": "pm2 restart ecosystem.config.js"
},
"dependencies": {
"@enflujo/alquimia": "^2.0.0",
"@meilisearch/instant-meilisearch": "^0.20.0",
"@pinia/nuxt": "^0.5.4",
"html-to-text": "^9.0.5",
"mapbox-gl": "^3.6.0",
"nuxt": "^3.13.1",
"vue-instantsearch": "^4.19.3"
},
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@types/html-to-text": "^9.0.4",
"@types/mapbox-gl": "^3.4.0",
"@types/node": "^22.5.4",
"prettier": "^3.3.3",
"sass": "^1.78.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}