-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.55 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
{
"name": "test",
"version": "0.1.0",
"private": true,
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon server/index.ts",
"start": "NODE_ENV=production node dist/server/index.js",
"build:backend": "tsc --project tsconfig.server.json",
"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/aurum:latest .",
"docker:push": "docker push gcr.io/xxcloud/aurum:latest",
"export": "next export && tsc --project tsconfig.server.json",
"test": "TS_NODE_PROJECT='./tsconfig.commonjs.json' NODE_ENV=test mocha server/*test.ts --exit",
"broker": "TS_NODE_PROJECT='./tsconfig.commonjs.json' NODE_ENV=test mocha server/broker/*test.ts --exit",
"eslint": "eslint . --fix --ext=ts,tsx"
},
"lint-staged": {
"./**/*.{ts,tsx}": [
"yarn eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@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/aurum-broker-ibkr": "^1.1.0",
"@stoqey/aurum-broker-mille": "^1.0.1",
"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.11.0",
"axios": "^0.19.2",
"chalk": "^3.0.0",
"debug": "^4.1.1",
"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",
"next": "^9.3.2",
"next-transpile-modules": "^2.3.1",
"react": "^16.8.6",
"react-content-loader": "^5.0.4",
"react-dom": "^16.8.6",
"react-loader-spinner": "^3.1.14",
"react-with-styles": "^4.1.0",
"rebass": "^4.0.7",
"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/debug": "^4.1.5",
"@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-dom": "^16.8.4",
"@types/rebass": "^4.0.4",
"@types/recharts": "^1.8.9",
"@types/styled-components": "^4.1.16",
"@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-prettier": "^3.1.4",
"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",
"prettier": "^2.0.5",
"ts-node": "^8.8.1",
"typescript": "^3.5.2"
},
"author": "Stoqey Inc <[email protected]>",
"license": "MIT"
}