-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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": "@example/basics",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"rm": "yarn rimraf node_modules/",
"ci": "yarn install --immutable --immutable-cache",
"dev": "ENV=development env-cmd astro dev",
"check-types": "ENV=production env-cmd astro check && tsc --noEmit",
"build": "yarn check-types && ENV=production env-cmd astro build",
"start": "ENV=production env-cmd astro preview",
"astro": "astro",
"lint": "eslint . --ignore-path=.gitignore --max-warnings=5"
},
"dependencies": {
"@astrojs/preact": "^2.0.3",
"@astrojs/tailwind": "^2.1.3",
"astro": "^1.8.0",
"env-cmd": "^10.1.0",
"preact": "^10.13.0",
"tailwindcss": "^3.0.24",
"zod": "^3.20.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-astro": "^0.23.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"rimraf": "^4.1.2"
}
}