-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 888 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
{
"name": "spure",
"version": "0.5.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "spago build",
"build-deps": "spago build --deps-only",
"bundle": "npm run bundle:css && npm run bundle:spago && npm run bundle:open",
"bundle:css": "esbuild --bundle src/style.css --outfile=dist/style.css --minify",
"bundle:spago": "spago bundle-app -t dist/index.js --minify",
"bundle:open": "cd dist; python -m http.server",
"dev": "parcel index.html --open --dist-dir dev"
},
"author": "Amir Dekel",
"devDependencies": {
"parcel": "^2.6.2",
"process": "^0.11.10"
},
"dependencies": {
"file-saver": "^2.0.5",
"modern-normalize": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}