-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.83 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
{
"name": "mint-talent-tracker",
"version": "0.0.1",
"description": "",
"license": "MIT",
"main": "index.ts",
"env": {
"node": true
},
"scripts": {
"dev": "npm run copy-templates && cross-env NODE_ENV=none npm-run-all --parallel watch:*",
"copy-templates": "copyfiles --up 2 \"./src/client/index.html\" ./public",
"watch:server": "nodemon dist/index.js",
"watch:client": "npx webpack -w --mode=none",
"start": "cross-env NODE_ENV=production node dist/index.js"
},
"nodemonConfig": {
"ignore": [
"src/client/*",
"public/*",
"lib/*",
"*.jsx"
],
"verbose": true,
"ext": "ts js json",
"watch": [
"src/server/**/*.ts"
]
},
"dependencies": {
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.1",
"http2": "^3.3.7",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"lerna": "^3.22.1",
"lodash": "^4.17.20",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"npx": "^10.2.2",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"passport-jwt": "^4.0.0",
"pg": "^8.4.0",
"process": "^0.11.10",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-bootstrap-typeahead": "^5.1.4",
"react-dom": "^17.0.1",
"react-dropzone": "^11.3.1",
"react-router-dom": "^5.2.0",
"reflect-metadata": "^0.1.10",
"request": "^2.88.2",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"typeorm": "0.2.30",
"typescript": "^4.1.3",
"url-loader": "^4.1.1",
"uuid": "^8.3.2",
"webpack": "^5.19.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^2.5.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@material-ui/core": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.57",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.11",
"@types/node": "^8.0.29",
"babel-preset-env": "^1.7.0",
"ts-node": "3.3.0",
"typescript": "3.3.3333"
}
}