-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 951 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 951 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
{
"name": "midithru",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist-build && parcel build src/index.html --dist-dir dist-build",
"build-prod": "NODE_ENV=production npm run build",
"deploy": "./scripts/deploy-to-cloudflare",
"dev": "parcel src/index.html",
"lint": "biome lint ./src",
"fix": "biome format --write ./src",
"check-types": "tsc --noEmit",
"ci": "biome ci ./src"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.7.0",
"@parcel/transformer-sass": "^2.12.0",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"parcel": "^2.12.0",
"process": "^0.11.10",
"typescript": "^5.4.5"
},
"dependencies": {
"@midival/core": "^0.1.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1"
}
}