-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.24 KB
/
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
30
31
32
33
34
35
36
37
{
"author": {
"email": "ptprashanttripathi@outlook.com",
"name": "ptprashanttripathi"
},
"bugs": {
"url": "https://github.com/PtPrashantTripathi/PortfolioTracker/issues"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.11.0"
},
"description": "A complete ETL for stock exchanges with PNL calculation and financial analysis tools.",
"devDependencies": {
"esbuild": "^0.24.0",
"http-server": "14.1.1",
"prettier": "^3.3.3"
},
"homepage": "https://github.com/PtPrashantTripathi/PortfolioTracker#readme",
"keywords": [
"FrontEnd"
],
"license": "MIT",
"main": "index.html",
"name": "portfoliotracker",
"repository": {
"type": "git",
"url": "https://github.com/PtPrashantTripathi/PortfolioTracker.git"
},
"scripts": {
"build": "esbuild FRONTEND/asset/ts/main.ts --outfile=FRONTEND/asset/js/main.js --bundle --sourcemap --target=es6 --platform=browser",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss,md,html}'",
"lint": "eslint --ext .ts --fix **/*.ts",
"serve": "http-server .",
"start": "npm run build && npm run serve"
},
"version": "0.5.19"
}