-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 767 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 767 Bytes
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
{
"name": "account-activity-dashboard-enterprise",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun dist/index.js",
"dev": "bun --watch index.ts",
"build": "bun build index.ts --outdir dist --target bun && cp -r public dist/ && cp index.html dist/ && cp login.html dist/",
"clean": "rm -rf dist",
"lint": "eslint .",
"test": "jest",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"precommit": "lint-staged"
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"oauth-1.0a": "^2.2.6"
}
}