-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 996 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 996 Bytes
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
{
"name": "quick-nots",
"author": {
"name": "위정훈 gitgitWi",
"email": "gitgitWi@gmail.com"
},
"repository": {
"url": "https://github.com/gitgitWi/quick-notes"
},
"homepage": "https://gitgitwi.github.io/quick-notes",
"type": "module",
"version": "0.0.1",
"private": true,
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^0.14.0",
"@astrojs/preact": "^1.2.0",
"@astrojs/tailwind": "^2.1.3",
"astro": "^1.8.0",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.20",
"preact": "^10.6.5",
"sass": "^1.57.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"devDependencies": {
"eslint": "^8.30.0",
"prettier": "^2.8.1"
},
"prettier": {
"endOfLine": "lf",
"printWidth": 80,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false
}
}