-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.76 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
{
"name": "fundacionsoycuerpo-web",
"description": "Web Fundación Soy Cuerpo",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/fundacionsoycuerpo/web"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"new-test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run",
"test:build:open": "npm run build && run-p --race preview cy:open",
"test:build:run": "npm run build && run-p --race preview cy:run",
"test:open": "run-p --race preview cy:open",
"test:run": "run-p --race preview cy:run"
},
"devDependencies": {
"@playwright-testing-library/test": "^4.3.1",
"@playwright/test": "^1.25.0",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@types/cookie": "^0.5.1",
"@types/marked": "^4.0.6",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"cypress": "^9.5.1",
"@testing-library/cypress": "^8.0.2",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"svelte": "^3.46.0",
"svelte-check": "^2.7.1",
"svelte-preprocess": "^4.10.6",
"tslib": "^2.3.1",
"typescript": "^4.7.4",
"vite": "^3.1.0-beta.1"
},
"type": "module",
"dependencies": {
"@fontsource/fira-mono": "^4.5.0",
"axios": "^0.27.2",
"cookie": "^0.4.1",
"date-fns": "^2.29.2",
"image-size": "^1.0.2",
"marked": "^4.0.19"
}
}