-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1 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
{
"name": "@svelte/language-tools",
"version": "1.0.0",
"author": "Svelte Contributors",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "yarn workspace svelte2tsx build && yarn workspace svelte-vscode build:grammar",
"build": "tsc -b",
"test": "cross-env CI=true yarn workspaces run test",
"watch": "tsc -b -watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint \"packages/**/*.{ts,js}\""
},
"dependencies": {
"typescript": "^4.5.3"
},
"devDependencies": {
"@sveltejs/eslint-config": "github:sveltejs/eslint-config#v5.2.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-svelte3": "^2.7.3",
"prettier": "2.3.2",
"cross-env": "^7.0.2",
"ts-node": "^10.0.0"
}
}