forked from PaulMaly/svelte-ts-preprocess
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
36 lines (36 loc) · 823 Bytes
/
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
{
"name": "svelte-typescript-monorepo",
"private": "true",
"version": "1.0.0",
"description": "A monorepo for Svelte Typescript",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pyoner/svelte-typescript.git"
},
"keywords": [
"svelte",
"typescript",
"preprocess"
],
"author": "Jungle <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pyoner/svelte-typescript/issues"
},
"homepage": "https://github.com/pyoner/svelte-typescript#readme",
"devDependencies": {
"husky": "^4.2.3",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"typescript": "^3.9.6"
}
}