forked from axies-ce-org/sugowaka35
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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": "sugowaka35",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">= 16"
},
"scripts": {
"lint": "eslint src",
"dev": "astro dev",
"start": "npm run dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"deploy": "run-s build deploy:*",
"deploy:init": "git init -b static static",
"deploy:remote": "git -C static remote add origin https://github.com/ixkaito/sugowaka35.git",
"deploy:add": "git -C static add -A",
"deploy:commit": "git -C static commit -m 'Deploy'",
"deploy:push": "git -C static push -f origin static"
},
"dependencies": {
"@astrojs/tailwind": "^3.0.1",
"astro": "^2.0.18",
"astro-relative-links": "^0.2.5"
},
"devDependencies": {
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-plugin-astro": "^0.23.0",
"eslint-plugin-tailwindcss": "^3.10.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-plugin-astro": "^0.8.0",
"tailwindcss": "^3.2.7"
}
}