-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
46 lines (46 loc) · 1.49 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
{
"name": "are-we-there-yet",
"private": true,
"version": "2.0.1",
"type": "module",
"author": "Martin Krisnanto Putra <grygrflzr@hotmail.com>",
"homepage": "https://github.com/GrygrFlzr/are-we-there-yet#readme",
"bugs": "https://github.com/GrygrFlzr/are-we-there-yet/issues",
"license": "(MIT OR Apache-2.0)",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"build:vercel": "svelte-kit build",
"build:netlify": "npm i -g pnpm && pnpm i && pnpm build",
"preview": "svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. ."
},
"devDependencies": {
"@sveltejs/adapter-static": "1.0.0-next.29",
"@sveltejs/kit": "1.0.0-next.294",
"@types/javascript-time-ago": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.4.1",
"javascript-time-ago": "^2.3.13",
"postcss-load-config": "^3.1.3",
"prettier": "~2.2.1",
"prettier-plugin-svelte": "2.6.0",
"svelte": "3.46.4",
"svelte-check": "2.4.5",
"svelte-preprocess": "4.10.4",
"tslib": "^2.3.1",
"typescript": "^4.6.2",
"vite-plugin-windicss": "^1.8.3",
"windicss": "^3.5.1"
},
"dependencies": {
"vite": "2.8.6"
}
}