-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.58 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
{
"name": "ikura",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "npm run i18n:compile",
"dev": "next dev",
"prebuild": "npm run i18n:compile",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci",
"i18n:extract": "formatjs extract 'pages/**/*.ts*' 'components/**/*.ts*' --out-file lang/en.json",
"i18n:compile": "formatjs compile-folder lang compiled-lang",
"cdk": "cdk",
"addlicense": "addlicense -c 'Synchronous Technologies Pte Ltd' -l apache -ignore 'node_modules/**' -ignore '.next/**' -ignore 'compiled-lang/**' -ignore 'lang/**' -ingore 'next-env.d.ts' ."
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@aws-sdk/client-dynamodb": "^3.82.0",
"@aws-sdk/lib-dynamodb": "^3.82.0",
"@emotion/styled": "^11.8.1",
"@headlessui/react": "^1.5.0",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.3",
"@next-auth/dynamodb-adapter": "^1.0.3",
"@sentry/nextjs": "^6.19.6",
"@sentry/react": "^6.19.6",
"@sentry/tracing": "^6.19.6",
"classnames": "^2.3.1",
"deepmerge": "^4.2.2",
"dinero.js": "^1.9.1",
"emoji-picker-react": "^3.5.1",
"formik": "^2.2.9",
"graphql": "^16.3.0",
"jsonwebtoken": "^8.5.1",
"lodash.isequal": "^4.5.0",
"luxon": "^2.4.0",
"next": "11.1.4",
"next-absolute-url": "^1.2.2",
"next-auth": "^4.3.4",
"react": "17.0.2",
"react-css-collapse": "^4.1.0",
"react-datepicker": "^4.8.0",
"react-dom": "17.0.2",
"react-hot-toast": "^2.2.0",
"react-hotkeys-hook": "^3.4.6",
"react-intl": "^5.20.13",
"react-select": "^5.1.0",
"recharts": "^2.1.9",
"sass": "^1.42.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@formatjs/cli": "^4.3.2",
"@tailwindcss/forms": "^0.5.0",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/dinero.js": "^1.9.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/luxon": "^2.0.5",
"@types/node": "^16.11.1",
"@types/react": "17.0.27",
"@types/react-datepicker": "^4.4.2",
"autoprefixer": "^10.4.4",
"aws-cdk": "^2.20.0",
"aws-cdk-lib": "^2.20.0",
"babel-jest": "27.4.5",
"babel-plugin-formatjs": "^10.3.10",
"constructs": "^10.0.118",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-plugin-formatjs": "^2.17.9",
"eslint-plugin-testing-library": "5.0.1",
"jest": "27.4.5",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.24",
"typescript": "4.4.3"
}
}