snort/package.json

27 lines
923 B
JSON
Raw Normal View History

2022-12-18 14:51:47 +00:00
{
"private": true,
2023-02-11 20:05:46 +00:00
"workspaces": [
"packages/*"
2023-02-14 13:59:15 +00:00
],
"scripts": {
2023-06-17 18:42:55 +00:00
"build": "yarn workspace @snort/shared build && yarn workspace @snort/system build && yarn workspace @snort/system-react build && yarn workspace @snort/app build",
"start": "yarn workspace @snort/shared build && yarn workspace @snort/system build && yarn workspace @snort/system-react build && yarn workspace @snort/app start",
2023-06-15 11:28:44 +00:00
"test": "yarn workspace @snort/shared build && yarn workspace @snort/system build && yarn workspace @snort/app test && yarn workspace @snort/system test"
2023-03-26 11:42:13 +00:00
},
"devDependencies": {
2023-07-24 14:30:21 +00:00
"@cloudflare/workers-types": "^4.20230307.0",
2023-03-18 06:58:43 +00:00
"@tauri-apps/cli": "^1.2.3",
2023-07-24 14:30:21 +00:00
"prettier": "^3.0.0"
2023-07-22 18:37:46 +00:00
},
"prettier": {
"printWidth": 120,
"bracketSameLine": true,
"arrowParens": "avoid"
2023-07-13 21:44:26 +00:00
},
"packageManager": "yarn@3.6.1",
"dependencies": {
"eslint": "^8.44.0",
"typescript": "^5.1.6"
2023-02-14 13:59:15 +00:00
}
2023-07-22 18:37:46 +00:00
}