-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1016 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
{
"name": "@oliverturner/blog",
"description": "Fullstack-flavoured front end notes",
"version": "0.0.1",
"private": true,
"type": "module",
"volta": {
"node": "16.13.0",
"npm": "8.1.4"
},
"devDependencies": {
"@types/react": "17.0.37",
"@types/react-dom": "17.0.11",
"astro": "^0.21.13",
"cssnano": "^5.0.13",
"cssnano-preset-advanced": "^5.1.9",
"patch-package": "6.4.7",
"postcss": "^8.4.5",
"postcss-custom-media": "8.0.0",
"postcss-custom-properties": "^12.0.1",
"postcss-jit-props": "^1.0.4",
"prettier": "2.5.1",
"prettier-plugin-astro": "0.0.11",
"sanitize.css": "13.0.0",
"sass": "^1.45.0",
"svelte-preprocess": "^4.10.1",
"typescript": "^4.5.4"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"prettify": "prettier --write './src/**/*.{js,cjs,mjs,ts,css,scss,svelte,astro}'"
},
"dependencies": {
"dateformat": "5.0.2"
}
}