-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.59 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": "f1-calc",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"prepare": "husky install",
"test": "playwright test",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. ."
},
"lint-staged": {
"*.{css,less,scss,html,json,jsx,js,.svelte}": [
"prettier --write --plugin-search-dir=. ."
]
},
"devDependencies": {
"@playwright/test": "^1.32.3",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.15.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.14",
"cz-emoji-conventional": "^1.0.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.0",
"postcss": "^8.4.22",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.7",
"prettier-plugin-svelte": "^2.10.0",
"prettier-plugin-tailwindcss": "^0.5.0",
"svelte": "^3.58.0",
"svelte-check": "^3.2.0",
"svelte-preprocess": "^5.0.0",
"tailwindcss": "^3.3.1",
"tailwindcss-neumorphism": "^0.1.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"vite": "^4.2.1"
},
"type": "module",
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji-conventional"
}
},
"dependencies": {
"chart.js": "^4.2.1",
"chartjs-adapter-moment": "^1.0.1",
"moment": "^2.29.4"
}
}