silverbullet/package.json

47 lines
1.6 KiB
JSON
Raw Permalink Normal View History

{
"name": "silverbulletmd",
"private": true,
"license": "MIT",
"scripts": {
2022-06-28 20:34:25 +08:00
"watch": "rm -rf .parcel-cache && parcel watch --no-hmr packages/{web,server,plugos,plugs}",
"clean": "rm -rf .parcel-cache packages/*/dist",
2022-06-23 23:59:18 +08:00
"nuke": "rm -rf node_modules && npm run clean",
2022-04-25 16:33:38 +08:00
"build": "parcel build packages/{web,server,plugos}",
2022-04-21 20:54:50 +08:00
"plugs": "cd packages/plugs && npm run watch",
2022-06-28 20:14:15 +08:00
"build-plugs": "cd packages/plugs && npm run build",
"server": "nodemon -w packages/server/dist --exec silverbullet",
2022-07-04 15:34:11 +08:00
"test": "jest packages/*/{dist,build}/test",
2022-06-28 20:14:15 +08:00
"clean-build": "npm run clean && npm run build && npm i && npm run build-plugs",
2022-09-13 20:53:32 +08:00
"publish-all": "npm publish --access public --ws",
2022-09-14 14:21:56 +08:00
"ru": "rollup -c -w"
},
"devDependencies": {
"@parcel/core": "2.5.0",
"@parcel/packager-raw-url": "2.5.0",
"@parcel/service-worker": "2.5.0",
"@parcel/transformer-inline-string": "2.5.0",
"@parcel/transformer-sass": "2.5.0",
"@parcel/transformer-webmanifest": "2.5.0",
"@parcel/validator-typescript": "2.5.0",
2022-09-14 14:21:56 +08:00
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
2022-09-13 20:53:32 +08:00
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.5.0",
2022-09-12 21:25:39 +08:00
"nodemon": "^2.0.19",
"parcel": "2.5.0",
2022-09-12 21:25:39 +08:00
"prettier": "^2.7.1",
2022-05-02 01:20:38 +08:00
"process": "^0.11.10",
2022-09-13 20:53:32 +08:00
"rollup": "^2.79.0",
2022-09-14 14:21:56 +08:00
"rollup-plugin-copy": "^3.4.0",
2022-09-13 20:53:32 +08:00
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-web-worker-loader": "^1.6.1",
2022-09-12 21:25:39 +08:00
"typescript": "^4.8.3"
},
"workspaces": [
2022-09-13 14:41:01 +08:00
"packages/*"
2022-09-14 14:21:56 +08:00
]
}