generated from Princesseuh/component-template
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "root",
"version": "0.0.1",
"license": "MIT",
"private": true,
"scripts": {
"start": "astro --root demo dev",
"build": "astro --root demo build",
"serve": "astro --root demo preview",
"test": "uvu tests -i utils",
"format": "prettier -w .",
"lint": "eslint . --ext .ts,.js"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@testing-library/dom": "^8.13.0",
"@types/eslint": "^8.44.0",
"@types/node": "^16.11.68",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"astro": "^4.16.3",
"astro-component-tester": "^0.8.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"linkedom": "^0.14.7",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.10.0",
"typescript": "^4.8.4",
"uvu": "^0.5.6"
},
"workspaces": [
"demo",
"docs",
"packages/**/*"
]
}