-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 854 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
{
"name": "Peer Analysis",
"version": "1.0.0",
"description": "Relative Value Analysis on Australian Listed Stocks",
"main": "asx.js",
"type": "module",
"scripts": {
"_comment": "the preceeding keyword 'pre' or 'post' makes before and after the original command",
"_comment2": "`cpy` has a bug in the --cwd flag, so explicitly specify ./src as ",
"prevscodedebug": "echo ***pre-buildling*** && rm -rf ./dist/ && cpy './src/**/*' '!./src/**/*.ts' './dist/'",
"vscodedebug": "echo ***buildling*** && tsc --build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.18",
"@types/superagent": "^4.1.15",
"cpy-cli": "^4.1.0",
"typescript": "^4.5.5"
},
"dependencies": {
"dotenv": "^16.0.0",
"superagent": "^7.1.1"
}
}