forked from mquandalle/mesaidesvelo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.52 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
{
"name": "mesaidesvelo",
"version": "1.0.0",
"scripts": {
"postinstall": "node ./src/scripts/postinstall.js",
"dev": "VITE_SITE=mesaidesvelo.fr vite dev",
"dev:retrofit": "VITE_SITE=aideretrofit.fr vite dev",
"build": "VITE_SITE=mesaidesvelo.fr vite build",
"build:retrofit": "VITE_SITE=aideretrofit.fr vite build",
"preview": "VITE_SITE=mesaidesvelo.fr vite preview",
"sync-entreprises": "node ./data-fetch/entreprises/download-gsheet-data.js",
"sync": "svelte-kit sync",
"test": "npm run test:playwright && npm run test:vitest -- run",
"test:playwright": "npx playwright test tests/navigation.spec.js",
"test:vitest": "vitest",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
},
"type": "module",
"private": true,
"devDependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@rollup/plugin-yaml": "^3.1.0",
"@sveltejs/adapter-vercel": "^1.0.0",
"@sveltejs/kit": "^1.0.0",
"mdsvex": "^0.10.6",
"node-fetch": "^3.2.0",
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.4.0",
"sharp": "^0.30.7",
"svelte": "^3.42.6",
"typescript": "^4.7.4",
"vite": "^4.0.0",
"vite-plugin-windicss": "^1.5.1",
"vitest": "^0.22.1",
"wget-improved": "^3.3.0",
"yaml": "^2.1.1"
},
"dependencies": {
"@etalab/decoupage-administratif": "^2.0.0",
"fuzzysort": "^2.0.0",
"playwright-aws-lambda": "^0.9.0",
"playwright-core": "^1.25.0",
"publicodes": "^1.0.0-beta.44"
}
}