-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 874 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
{
"name": "astra",
"version": "0.0.1",
"description": "aggressively simple template for react apps",
"main": "index.js",
"type": "module",
"scripts": {
"build-the-app": "bun build ./source-code/index.jsx --outdir ./web-app/javascript --minify",
"watch-the-app": "bun build ./source-code/index.jsx --outdir ./web-app/javascript --minify --watch",
"serve-for-development": "bun index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/i-a-n/astra.git"
},
"keywords": [
"bun.sh"
],
"author": "@i-a-n",
"license": "Apache-2.0",
"homepage": "https://github.com/i-a-n/astra",
"dependencies": {
"bun": "1.0.7",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"bun-types": "1.0.7",
"@types/react": "18.2.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}