-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1007 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
{
"name": "truepricetea.org",
"description": "truepricetea.org website",
"version": "1.0.0",
"author": "dilmaheu",
"homepage": "https://truepricetea.org",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build:only": "astro build",
"build": "npm run fetch:imgs && npm run build:only",
"preview": "astro preview",
"fetch:imgs": "ts-node --esm ./src/utils/imageFetching.ts",
"format": "prettier -w ."
},
"dependencies": {
"accessible-astro-components": "^1.5.4",
"astro-icon": "^0.7.1"
},
"devDependencies": {
"@astrojs/svelte": "^0.1.4",
"@types/node": "^17.0.35",
"astro": "^1.0.0-beta.40",
"autoprefixer": "^10.4.0",
"node-fetch": "^3.2.4",
"prettier": "^2.6.2",
"prettier-plugin-astro": "^0.1.0-next.4",
"prettier-plugin-svelte": "^2.7.0",
"sass": "^1.49.9",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"ts-node": "^10.8.0",
"tslib": "^2.4.0"
}
}