-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "stonks-go-brrr-api",
"version": "1.0.0",
"description": "\"Stonks always go up\"",
"main": "index.ts",
"engines": {
"node": "12.18.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts",
"build": "tsc",
"docker": "docker-compose up --build",
"docker-up": "docker-compose up",
"start": "node dist/server.js",
"pretty": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Stonks-App/stonks-go-brrr-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Stonks-App/stonks-go-brrr-api/issues"
},
"homepage": "https://github.com/Stonks-App/stonks-go-brrr-api#readme",
"devDependencies": {
"@sentry/types": "^5.20.1",
"@sentry/typescript": "^5.20.1",
"@types/express": "^4.17.7",
"@types/node": "^14.0.27",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@sentry/node": "^5.20.0",
"@types/axios": "^0.14.0",
"@types/lodash.merge": "^4.6.6",
"@types/node-schedule": "^1.3.0",
"algotrader": "^2.5.4",
"apollo-datasource-rest": "^0.9.3",
"apollo-errors": "^1.9.0",
"apollo-resolvers": "^1.4.2",
"apollo-server-express": "^2.16.0",
"axios": "^0.19.0",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"graphql-scalars": "^1.2.6",
"lodash.merge": "^4.6.2",
"moment": "^2.27.0",
"node-schedule": "^1.3.2",
"winston": "^3.3.3"
}
}