-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "hullaballoo-backoffice",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3030",
"build": "next build",
"start": "next start -p $PORT",
"lint": "next lint",
"migration:add": "tsc ./src/scripts/add-migration.ts && node ./src/scripts/js/add-migration.js",
"migration:prep": "tsc ./src/migrations/*.ts"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.7.0",
"final-form": "^4.20.7",
"final-form-arrays": "^3.0.2",
"firebase": "^9.8.1",
"get-youtube-id": "^1.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "12.1.6",
"notistack": "^2.0.5",
"pomeranian-durations": "^1.12.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.3",
"react-player": "^2.10.1"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/node": "17.0.33",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"@types/styled-components": "^5.1.25",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"typescript": "4.6.4"
}
}