-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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": "dog-day",
"version": "0.0.1",
"type": "module",
"scripts": {
"build": "pnpm sync && vite build",
"check": "pnpm sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "pnpm sync && svelte-check --tsconfig ./tsconfig.json --watch",
"dev": "vite dev",
"format": "prettier --plugin-search-dir . --write .",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"preview": "vite preview",
"sync": "svelte-kit sync",
"test": "pnpm format && pnpm lint & pnpm check & wait"
},
"dependencies": {
"axios": "^1.1.3",
"isomorphic-unfetch": "^3.1.0",
"lodash": "^4.17.21",
"node-fetch": "^3.2.10",
"postcss-import": "^15.0.0"
},
"devDependencies": {
"@sveltejs/adapter-auto": "1.0.0-next.84",
"@sveltejs/adapter-static": "1.0.0-next.45",
"@sveltejs/kit": "1.0.0-next.520",
"@types/lodash": "^4.14.186",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"autoprefixer": "^10.4.12",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.18",
"postcss-load-config": "^4.0.1",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.8.0",
"sass": "^1.55.0",
"svelte": "^3.52.0",
"svelte-check": "^2.9.2",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.2.0",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"vite": "^3.1.8"
}
}