-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.14 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
130
131
132
133
134
{
"name": "optionsheet",
"version": "1.0.0",
"description": "A work-in-progress tool for logging and analyzing options portfolios.",
"scripts": {
"start:api": "node build/server.js",
"build": "npm run build:api && npm run build:web",
"build:api": "webpack --config webpack.api.config.js --mode=production",
"build:web": "webpack --config webpack.web.config.js --mode=production",
"dev:api": "webpack -w --config webpack.api.config.js --mode development",
"dev:api:start": "nodemon build/api/server.js",
"dev:web": "webpack serve --config webpack.web.config.js --mode development",
"lint": "eslint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephenreynolds/optionsheet-client.git"
},
"author": "Stephen Reynolds (mail@stephenreynolds.dev)",
"bugs": {
"url": "https://github.com/stephenreynolds/optionsheet-client/issues"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/free-regular-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"@types/pg": "^8.6.5",
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"black-scholes": "^1.1.0",
"color": "^4.2.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"deepmerge": "^4.2.2",
"express": "^4.17.3",
"express-rate-limit": "^6.3.0",
"formik": "^2.2.9",
"helmet": "^5.0.2",
"http-status-codes": "^2.2.0",
"humanize-duration": "^3.27.1",
"immer": "^9.0.12",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mathjs": "^10.4.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"pg": "^8.7.3",
"react": "^18.0.0",
"react-date-picker": "^8.4.0",
"react-dnd": "^15.1.1",
"react-dnd-html5-backend": "^15.1.2",
"react-dom": "^18.0.0",
"react-redux": "^7.2.6",
"react-router": "^6.2.2",
"react-router-dom": "^6.2.2",
"react-toastify": "^8.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-immutable-state-invariant": "^2.1.0",
"redux-thunk": "^2.4.1",
"styled-components": "^5.3.3",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2",
"winston": "^3.6.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/register": "^7.17.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"babel-loader": "^8.2.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-styled-components": "^2.0.6",
"copy-webpack-plugin": "^10.2.4",
"coveralls": "^3.1.1",
"css-loader": "^6.7.1",
"dotenv": "^16.0.0",
"eslint": "^8.10.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^2.6.0",
"nodemon": "^2.0.15",
"postcss": "^8.4.8",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.4.2",
"prettier": "^2.5.1",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2",
"url-loader": "^4.1.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-dev-server": "^4.7.4",
"webpack-node-externals": "^3.0.0"
}
}