-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
38
{
"name": "stock_alerts",
"version": "1.0.0",
"description": "sigfig test - stocks your friends are trading(sending weekly buy/sell alerts based on the net buying or selling done by friends for individual stock)",
"main": "index.js",
"scripts": {
"test": "npm run build && jasmine",
"start": "nodemon src/index.ts",
"build": "npx tsc",
"lint": "eslint 'src/index.ts' ",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"author": "dattgoswami",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^3.9.1",
"@types/node": "^16.10.1",
"@types/supertest": "^2.0.11",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@types/cors": "^2.8.12",
"@types/redis": "^2.8.32",
"cors": "^2.8.5",
"express": "^4.17.1",
"jasmine": "^3.9.0",
"jasmine-spec-reporter": "^7.0.0",
"redis": "^3.1.2",
"supertest": "^6.1.6"
}
}