-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 3.51 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
{
"name": "samromur-v2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm run remove-sw &&cd src/server && tsc-watch --onSuccess \"npm run start:dev\"",
"build": "npm run build:next && npm run build:server",
"build:next": "next build",
"build:server": "tsc --project src/server/tsconfig.json",
"remove-sw": "rm -f public/sw* && rm -f public/workbox-*",
"check-format": "prettier --check src/**/*.{ts,tsx}",
"auto-format": "prettier --write src/**/*.{ts,tsx}",
"start:dev": "node dist/server/index.js",
"start": "NODE_ENV=production node dist/server/index.js",
"start:windows": "SET NODE_ENV=production&& node dist/server/index.js"
},
"author": "Ólafur Helgi Jónsson, Staffan Hedström",
"license": "MIT",
"dependencies": {
"@sendgrid/client": "^7.4.2",
"@sendgrid/mail": "^7.4.2",
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.1",
"animate-css-grid": "^1.4.3",
"audio-recorder-polyfill": "^0.3.8",
"aws-sdk": "^2.843.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.6.0",
"chart.js": "^2.9.4",
"cookie-parser": "^1.4.5",
"crypto-js": "^4.0.0",
"db-migrate": "^0.11.12",
"db-migrate-mysql": "^2.1.2",
"express": "^4.17.1",
"express-rate-limit": "^5.2.5",
"js-md5": "^0.7.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"next": "^10.0.6",
"next-cookies": "^2.0.3",
"next-i18next": "^4.5.0",
"next-pwa": "^5.0.5",
"next-redux-wrapper": "^5.0.0",
"popmotion": "^8.7.6",
"proxy-agent": "^3.1.1",
"raw-loader": "^4.0.2",
"react": "^16.14.0",
"react-bootstrap": "^1.4.3",
"react-bootstrap-table-next": "^4.0.3",
"react-bootstrap-table2-filter": "^1.3.3",
"react-bootstrap-table2-paginator": "^2.1.2",
"react-chartjs-2": "^2.11.1",
"react-countdown": "^2.3.1",
"react-dom": "^16.14.0",
"react-markdown": "^4.3.1",
"react-markdown-editor-lite": "^1.2.4",
"react-modal": "^3.12.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-observable": "^1.2.0",
"rxjs": "^6.6.3",
"stream-transcoder": "0.0.5",
"styled-components": "^5.2.1",
"swr": "^1.0.1",
"typesafe-actions": "^5.1.0",
"uuid": "^8.3.2",
"webpack": "^4.41.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/crypto-js": "^3.1.47",
"@types/js-md5": "^0.4.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/moment": "^2.13.0",
"@types/multer": "^1.4.5",
"@types/mysql2": "github:types/mysql2",
"@types/next-redux-wrapper": "^3.0.0",
"@types/node": "^13.13.42",
"@types/react": "^16.14.4",
"@types/react-bootstrap": "^1.0.1",
"@types/react-bootstrap-table-next": "^4.0.16",
"@types/react-bootstrap-table2-filter": "^1.3.3",
"@types/react-bootstrap-table2-paginator": "^2.1.2",
"@types/react-modal": "^3.12.0",
"@types/react-redux": "^7.1.16",
"@types/redux": "^3.6.0",
"@types/sendgrid": "^4.3.0",
"@types/styled-components": "^5.1.7",
"@types/uuid": "^7.0.3",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-styled-components": "^1.12.0",
"cross-env": "^7.0.3",
"db-migrate-plugin-typescript": "^2.0.0",
"prettier": "^2.2.1",
"ts-node": "^8.8.1",
"tsc-watch": "^4.2.3",
"typescript": "^3.9.9",
"worker-loader": "^3.0.8"
}
}