-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
129 lines (129 loc) · 4.01 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "nitrogen",
"version": "0.0.1",
"description": "Notebook for quants and developers",
"main": "index.js",
"scripts": {
"dev": "SENTRY_LOG_LEVEL=info NODE_ENV=development nodemon server/index.ts",
"build:backend": "tsc --project tsconfig.server.json",
"dev-algo": "nodemon server/dev.ts",
"copy-client-files": "cp -r client/assets dist/client/",
"build": "next build && tsc --project tsconfig.server.json && yarn copy-client-files",
"docker": "docker build -t gcr.io/xxcloud/nitrogen:latest .",
"docker:push": "docker push gcr.io/xxcloud/nitrogen:latest",
"export": "next export && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node dist/server/index.js",
"test": "TS_NODE_PROJECT='./tsconfig.commonjs.json' NODE_ENV=test mocha server/*test.ts --exit",
"eslint": "eslint . --fix --ext=ts,tsx"
},
"lint-staged": {
"./**/*.{ts,tsx}": [
"yarn eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"stocks",
"crypto",
"trading",
"algo-trading",
"next-js",
"expressjs",
"stoqey"
],
"author": "Stoqey Inc <[email protected]>",
"license": "MIT",
"dependencies": {
"@amplitude/react-amplitude": "^1.0.0",
"@apollo/react-hooks": "^3.1.4",
"@rebass/forms": "^4.0.6",
"@rebass/preset": "^4.0.5",
"@sentry/browser": "^5.15.4",
"@sentry/node": "^5.15.4",
"@stoqey/finnhub": "^0.0.2",
"@stoqey/gnuplot": "0.0.3",
"@vuga/barebone": "0.1.2",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-http": "^1.5.17",
"apollo-link-ws": "^1.0.20",
"apollo-server-express": "2.14.2",
"axios": "^0.19.2",
"chalk": "^3.0.0",
"d3-time-format": "^2.2.3",
"dotenv": "^8.2.0",
"emotion-theming": "^10.0.27",
"events": "^3.1.0",
"express": "^4.17.1",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.3",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"nanoexpress": "^2.0.0",
"next": "^9.3.2",
"next-transpile-modules": "^2.3.1",
"react": "^16.8.6",
"react-charts": "^2.0.0-beta.6",
"react-content-loader": "^5.0.4",
"react-date-picker": "^8.0.0",
"react-dates": "^21.8.0",
"react-dom": "^16.8.6",
"react-loader-spinner": "^3.1.14",
"react-with-styles": "^4.1.0",
"rebass": "^4.0.7",
"recharts": "^1.8.5",
"styled-components": "^3.4.10",
"subscriptions-transport-ws": "^0.9.16",
"theme-ui": "^0.3.1"
},
"devDependencies": {
"@sentry/webpack-plugin": "^1.10.0",
"@types/chai": "^4.2.11",
"@types/d3-time-format": "^2.1.1",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.0",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.2",
"@types/next": "^9.0.0",
"@types/node": "^12.0.8",
"@types/react": "^16.8.21",
"@types/react-dates": "^17.1.10",
"@types/react-dom": "^16.8.4",
"@types/react-loader-spinner": "^3.1.0",
"@types/react-with-styles": "^4.0.3",
"@types/rebass": "^4.0.4",
"@types/recharts": "^1.8.9",
"@types/styled-components": "^4.1.16",
"@types/supertest": "^2.0.8",
"@types/theme-ui": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"@zeit/next-source-maps": "^0.0.3",
"@zeit/next-typescript": "^1.1.1",
"babel-plugin-styled-components": "^1.10.1",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-graphql": "^3.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"eslint-plugin-simple-import-sort": "^5.0.2",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"mocha": "^7.1.1",
"next-compose-plugins": "^2.2.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2",
"ts-node": "^8.8.1",
"typescript": "^3.5.2"
}
}