generated from gilamran/fullstack-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.85 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
{
"name": "trading-assistant",
"version": "1.1.2",
"description": "",
"main": "index.js",
"engines": {
"node": "14.18.2"
},
"scripts": {
"clean": "rimraf dist",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"start": "node index.js",
"start:prod": "cross-env NODE_ENV=production node index.js",
"type-check-client": "tsc -p ./src/client/tsconfig.json",
"build-client": "cross-env NODE_ENV=production TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack --mode production",
"build-server": "tsc -b src/server",
"dev-client": "cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack serve",
"dev-server": "tsc-watch --noClear -b ./src/server/tsconfig.json --onSuccess \"node --enable-source-maps index.js\"",
"dev": "concurrently --prefix \"[{name}]\" --names \"SERVER,CLIENT\" -c \"bgBlue.bold,bgGreen.bold\" \"npm run dev-server\" \"npm run dev-client\"",
"build": "concurrently --prefix \"[{name}]\" --names \"SERVER,CLIENT\" -c \"bgBlue.bold,bgGreen.bold\" \"npm run build-server\" \"npm run build-client\""
},
"keywords": [
"typescript",
"react",
"starter-kit",
"webpack",
"fullstack",
"express",
"express4",
"node"
],
"repository": {
"type": "git",
"url": "https://github.com/gilamran/fullstack-typescript.git"
},
"license": "MIT",
"author": "Gil Amran",
"dependencies": {
"@aws-sdk/client-s3": "^3.58.0",
"@master-chief/alpaca": "^6.3.18",
"axios": "^0.24.0",
"body-parser": "^1.19.1",
"cross-env": "^7.0.3",
"csv-stringify": "^6.1.2",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"find-up": "^5.0.0",
"finnhub": "^1.2.14",
"lightweight-charts": "^3.8.0",
"talib": "^1.1.5",
"tslib": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-decorators": "^7.16.5",
"@babel/plugin-proposal-numeric-separator": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.4",
"@mui/material": "^5.2.4",
"@mui/styles": "^5.2.3",
"@types/cssnano": "^4.0.1",
"@types/express": "^4.17.13",
"@types/node": "^17.0.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@types/webpack": "^4.41.26",
"@types/webpack-bundle-analyzer": "^3.9.0",
"@types/webpack-dev-server": "^3.11.1",
"@types/webpack-manifest-plugin": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-loader": "^8.2.3",
"concurrently": "^6.5.0",
"core-js": "^3.20.0",
"css-loader": "^6.5.1",
"cssnano": "^5.0.13",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"file-loader": "^6.2.0",
"http-proxy-middleware": "^2.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"postcss-loader": "^6.2.1",
"prettier": "2.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"ts-node": "^10.4.0",
"tsc-watch": "^4.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.18.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"webpack-manifest-plugin": "^4.0.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}