-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.56 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
{
"name": "accounting",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"test": "jest",
"start": "next start",
"eslint": "eslint . --ext .json --ext .js",
"lint": "yarn eslint",
"prettier": "prettier --write \"**/*.{html,js,json,md,mdx,mjs,yml}\"",
"prettier:check": "prettier --check \"**/*.{js,json,md,yml}\"",
"vapid": "web-push generate-vapid-keys"
},
"dependencies": {
"@auth0/nextjs-auth0": "1.3.0",
"@sentry/nextjs": "^6.10.0",
"date-fns": "^2.21.1",
"dotenv": "^8.2.0",
"formik": "^2.2.6",
"isomorphic-unfetch": "^3.1.0",
"next": "11.1.1",
"next-pwa": "5.3.1",
"react": "17.0.2",
"react-datepicker": "^3.8.0",
"react-dom": "17.0.2",
"react-modal": "^3.13.1",
"react-number-format": "^4.5.5",
"react-select": "^4.3.0",
"serverless-mysql": "^1.5.4",
"styled-components": "^5.2.3",
"swr": "^0.5.5",
"tslib": "^2.2.0",
"web-push": "^3.4.4",
"yup": "^0.32.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@types/react": "^17.0.26",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-styled-components": "^1.12.0",
"chance": "^1.1.7",
"eslint": "^7.24.0",
"eslint-config-get-off-my-lawn": "^6.0.1",
"jest": "^26.6.3",
"prettier": "^2.2.1"
}
}