-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
55 lines (55 loc) · 1.68 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
{
"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.10.1",
"@actions/github": "^6.0.0",
"@playwright/test": "^1.40.1",
"@rollup/plugin-yaml": "^4.1.2",
"@sveltejs/adapter-vercel": "^4.0.3",
"@sveltejs/kit": "^2.0.6",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"mdsvex": "^0.11.0",
"node-fetch": "^3.3.2",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"sharp": "=0.32.6",
"svelte": "^4.2.8",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-windicss": "^1.9.2",
"vitest": "^1.1.0",
"wget-improved": "^3.4.0",
"yaml": "^2.3.4"
},
"dependencies": {
"@etalab/decoupage-administratif": "^3.1.1",
"fuzzysort": "^2.0.4",
"jsdom": "^23.0.1",
"playwright-aws-lambda": "^0.10.0",
"playwright-core": "^1.40.1",
"publicodes": "^1.0.0-rc.6"
},
"overrides": {
"vite": {
"rollup": "npm:@rollup/wasm-node"
}
}
}