-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "mcpfp",
"version": "0.0.1",
"scripts": {
"dev": "svelte-kit dev --host",
"build": "svelte-kit build",
"package": "svelte-kit package",
"preview": "svelte-kit preview --host",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint --ignore-path .gitignore ."
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@sveltejs/adapter-auto": "next",
"@sveltejs/adapter-static": "^1.0.0-next.28",
"@sveltejs/kit": "next",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^7.32.0",
"eslint-plugin-svelte3": "^3.2.1",
"husky": "^7.0.4",
"sass": "^1.49.9",
"svelte": "^3.44.0",
"svelte-check": "^2.2.6",
"svelte-preprocess": "^4.10.1",
"tslib": "^2.3.1",
"typescript": "~4.5.4"
},
"type": "module",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@sveltejs/adapter-node": "^1.0.0-next.70",
"canvas": "^2.9.0",
"skia-canvas": "^0.9.29"
},
"engines": {
"node": "17.4.0"
}
}