-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.39 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
{
"name": "open-sketch",
"version": "1.0.0",
"repository": "git@github.com:kpicaza/open-sketch.git",
"license": "BSD-3-Clause",
"private": false,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "wtr resources/js/test/**/*.test.ts resources/js/test/**/**/*.test.ts --node-resolve",
"cs-check": "eslint resources/js/**/*.ts",
"cs-fix": "eslint resources/js/**/*.ts --fix"
},
"dependencies": {
"@lit/context": "^1.0.0",
"@material/web": "^1.0.0",
"@shoelace-style/shoelace": "^2.11.0",
"lit": "^2.0.2",
"lit-translate": "^2.0.1"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@open-wc/eslint-config": "^12.0.0",
"@open-wc/testing": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@web/dev-server-esbuild": "^0.4.3",
"@web/test-runner": "^0.17.2",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-lit": "^1.9.1",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-wc": "^2.0.4",
"laravel-vite-plugin": "^0.8.0",
"prettier": "^3.0.3",
"typescript": "*",
"vite": "^4.0.0"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
}
}