-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 933 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": "presto-demo-app",
"version": "1.0.0",
"scripts": {
"transpile:app": "tsc -p tsconfig.json",
"bundle:app": "rollup -c rollup.config.js",
"transpile:dom": "presto -c presto.config.js",
"build": "npm-run-all transpile:app bundle:app transpile:dom clean",
"clean": "rimraf dist/es2020",
"watch": "nodemon --watch ./src/presto/ -e html --exec npx presto"
},
"keywords": [],
"author": "Stephan Casas <[email protected]>",
"license": "MIT",
"description": "A demo application to showcase the capabilities of Presto",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.1.1",
"@ryangjchandler/spruce": "^2.6.3",
"@types/node": "^14.14.25",
"alpinejs": "^2.8.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"presto": "^1.0.31",
"rimraf": "^3.0.2",
"rollup": "^2.38.5",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.3"
}
}