-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 KB
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
39
{
"name": "fantasy_optimizer",
"version": "1.0.0",
"description": "node api for helping during fantasy drafting",
"main": "/build/api.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"start-functions": "node build/fantasy_functions.js",
"start": "node build/api.js",
"compile_and_run": "npm run tsc && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BryceARich/fantasy-optimizer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BryceARich/fantasy-optimizer/issues"
},
"homepage": "https://github.com/BryceARich/fantasy-optimizer#readme",
"dependencies": {
"@types/node": "^14.0.11",
"@types/redis": "^2.8.22",
"babel-cli": "^6.26.0",
"babel-preset-react-app": "^3.1.2",
"csvtojson": "^2.0.10",
"express": "^4.17.1",
"prompt-sync": "^4.2.0",
"redis": "^3.0.2",
"redis-cli": "^1.4.0",
"request": "^2.88.2",
"ts-node": "^8.10.2",
"typescript": "^3.0.0"
},
"devDependencies": {},
"keywords": []
}