1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"name": "upnet",
"version": "1.0.0",
"description": "yet another todo list",
"main": "index.jsx",
"dependencies": {
"axios": "^0.21.1",
"esbuild": "^0.8.49",
"moment": "^2.29.1",
"preact": "^10.5.12",
"strftime": "^0.10.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: testing is disallowed\" && exit 1",
"build": "esbuild index.jsx --sourcemap=inline --bundle --outdir=dist",
"release": "esbuild index.jsx --bundle --minify --outdir=dist",
"watch": "esbuild index.jsx --sourcemap=inline --bundle --outdir=dist --watch"
},
"author": "syn",
"license": "MIT"
}
|