forked from oursky/mockuphone.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 908 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
{
"name": "mockuphonehtml",
"type": "commonjs",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier --write \"**/*\" --ignore-unknown",
"astro": "astro",
"start-ts": "cd ./src/model && tsc && node ./model.js",
"check": "astro check -- && tsc --noEmit"
},
"dependencies": {
"@astrojs/image": "^0.17.2",
"@astrojs/ts-plugin": "^1.1.1",
"astro": "^2.8.3",
"image-size": "^1.1.1",
"localforage": "^1.10.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.46.0",
"eslint-plugin-astro": "^0.27.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"prettier": "^3.0.1",
"prettier-plugin-astro": "^0.11.0"
}
}