This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
generated from ryanatkn/fuz_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "svelte-store-study",
"description": "assessing several Svelte stores",
"version": "0.0.1",
"type": "module",
"homepage": "https://ryanatkn.github.io/svelte-store-study",
"engines": {
"node": ">=18.6"
},
"scripts": {
"start": "gro dev",
"dev": "gro dev",
"build": "gro build",
"test": "gro test",
"deploy": "gro deploy"
},
"devDependencies": {
"@amadeus-it-group/tansu": "^0.0.13",
"@feltcoop/eslint-config": "^0.2.1",
"@feltcoop/felt": "^0.45.0",
"@feltcoop/gro": "^0.68.0",
"@feltcoop/util": "^0.4.0",
"@preact/signals-core": "^1.2.3",
"@sveltejs/adapter-static": "^1.0.0-next.48",
"@sveltejs/kit": "^1.0.0-next.567",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"svelte": "^3.53.1",
"svelte-check": "^2.9.2",
"svelte-preprocess-esbuild": "^3.0.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"uvu": "^0.5.6"
},
"eslintConfig": {
"root": true,
"extends": "@feltcoop"
},
"prettier": {
"useTabs": true,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"overrides": [
{
"files": "package.json",
"options": {
"useTabs": false
}
}
]
}
}