-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 4.65 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
{
"name": "household-chores",
"version": "0.2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Fezzzi/Household-Chores"
},
"devDependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@reduxjs/toolkit": "^1.6.1",
"@svgr/webpack": "^5.5.0",
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.2.21",
"@types/cookie-parser": "^1.4.2",
"@types/copy-webpack-plugin": "^8.0.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-mysql-session": "^2.1.3",
"@types/express-session": "^1.17.4",
"@types/mocha": "^9.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^16.9.1",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.0",
"@types/rimraf": "^3.0.1",
"@types/styled-components": "^5.1.14",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"concurrently": "^6.2.0",
"connected-react-router": "^6.9.1",
"copy-webpack-plugin": "^9.0.1",
"cross-env-file": "^1.0.0",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^5.9.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"fast-deep-equal": "^3.1.3",
"file-loader": "^6.2.0",
"history": "4.10.1",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"lodash": "^4.17.21",
"mini-svg-data-uri": "^1.3.3",
"mocha": "^9.0.3",
"nodemon-webpack-plugin": "^4.5.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-facebook-sdk": "^1.1.1",
"react-google-login": "^5.2.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-router-redux": "^4.0.8",
"redux": "^4.1.0",
"redux-saga": "^1.1.3",
"source-map-loader": "^3.0.0",
"style-loader": "^3.2.1",
"styled-components": "^5.3.0",
"ts-loader": "^9.2.5",
"ts-node-dev": "^1.1.8",
"tscpaths": "^0.0.9",
"url-loader": "^4.1.1",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@sendgrid/mail": "^7.4.5",
"base64url": "^3.0.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cookie-parser": "latest",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-pg-session": "git+https://github.com/sanjaypojo/express-pg-session.git",
"express-session": "^1.17.2",
"github-api": "^3.4.0",
"google-auth-library": "^7.9.1",
"morgan": "^1.10.0",
"node-pg-migrate": "^5.10.0",
"pg": "^8.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
},
"scripts": {
"start": "concurrently --kill-others-on-fail -n api,web \"yarn:start-api\" \"yarn:start-web\"",
"start-api": "ts-node-dev -r tsconfig-paths/register --project ./tsconfig-api.json ./src/api/index.ts",
"start-web": "webpack-dev-server --config ./config/webpack.config.ts --open --mode development",
"build": "yarn build-web && yarn build-api",
"build-api": "rimraf ./build-api && tsc --project ./tsconfig-api.json && tscpaths -p ./tsconfig-api.json -s ./src -o ./build-api",
"build-web": "rimraf ./build && webpack --config ./config/webpack.config.ts --mode production",
"test": "yarn lint && yarn mocha",
"lint": "eslint -c ./config/eslintrc.js . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint --fix -c ./config/eslintrc.js . --ext .js,.jsx,.ts,.tsx",
"mocha": "mocha -r ts-node/register -r tsconfig-paths/register -r ./config/mocha-env-config.js \"src/tests/**/*.spec.ts\"",
"migrate": "ts-node -r tsconfig-paths/register ./node_modules/node-pg-migrate/bin/node-pg-migrate -m ./src/api/migrations --template-file-name ./config/migration-template.ts",
"clean-uploads": "ts-node -r tsconfig-paths/register ./bin/clean-uploads.ts",
"clean-activity-table": "ts-node -r tsconfig-paths/register ./bin/clean-activity-table.ts"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}