forked from LudwigThePig/full-stack-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 785 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 785 Bytes
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
{
"name": "full-stack-challenge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"heroku-postbuild": "npm run build",
"start": "next start -p $PORT",
"test": "jest"
},
"dependencies": {
"@date-io/date-fns": "1.x",
"@material-ui/core": "^4.10.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/pickers": "^3.2.10",
"babel-jest": "^26.0.1",
"clsx": "^1.1.0",
"date-fns": "^2.14.0",
"formik": "^2.1.4",
"formik-material-ui": "^2.0.0-beta.1",
"isomorphic-unfetch": "^3.0.0",
"jest": "^26.0.1",
"next": "9.4.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"sqlite3": "^4.2.0",
"swr": "^0.2.2",
"test-listen": "^1.1.0",
"yup": "^0.29.0"
}
}