-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1021 Bytes
/
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
{
"name": "instabart",
"version": "2.0.0",
"description": "Everything an NTNU student needs... except for coffee",
"author": {
"name": "Morten Vaale Noddeland",
"email": "morten@noddeland.no"
},
"license": "UNLICENSED",
"homepage": "http://instabart.no",
"private": true,
"repository": {
"type": "git",
"url": "http://github.com/mortnod/instabart"
},
"bugs": {
"url": "https://github.com/mortnod/instabart/issues"
},
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.5.6",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.4.9",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.31.4"
}
}