-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.25 KB
/
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
40
41
42
43
44
{
"name": "tinybuild",
"version": "0.10.61",
"description": "Versatile esbuild configuration with custom plugins + node hotreloading for a lightweight and frustration-free web development experience.",
"main": "tinybuild.js",
"type": "module",
"bin": {
"tinybuild": "tinybuild/bin/global.js"
},
"preferGlobal": true,
"scripts": {
"start": "node tinybuild.js",
"build": "cd example && node tinybuild.js",
"init": "node tinybuild/init.js",
"concurrent": "concurrently \"npm run python\" \"npm run startdev\"",
"dev": "npm run pip && npm i --save-dev concurrently && npm i --save-dev nodemon && npm run concurrent",
"startdev": "nodemon --exec \"cd example && node tinybuild.js\" -e ejs,js,ts,jsx,tsx,css,html,jpg,png,scss,txt,csv",
"python": "python tinybuild/python/server.py",
"pip": "pip install quart && pip install websockets"
},
"keywords": [
"esbuild"
],
"author": "Joshua Brewster",
"license": "LGPL-3.0-or-later",
"dependencies": {
"chokidar": "~3.6.0",
"esbuild": "*",
"ws": "~8.17.1"
},
"peerDependencies": {
"typescript": "*"
},
"nodemonConfig": {
"env": {
"NODEMON": true,
"HOTRELOAD": true
},
"ignore": [
"dist/",
".temp/"
]
}
}