-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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
{
"name": "shortener-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test-watch": "NEXT_PUBLIC_VERCEL_ENV=testing jest --watch",
"test": "NEXT_PUBLIC_VERCEL_ENV=testing jest"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"@fortawesome/fontawesome-pro": "^5.15.3",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/pro-duotone-svg-icons": "^5.15.3",
"@fortawesome/pro-light-svg-icons": "^5.15.3",
"@fortawesome/pro-regular-svg-icons": "^5.15.3",
"@fortawesome/pro-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"add": "^2.0.6",
"axios": "^0.24.0",
"classnames": "^2.3.1",
"d3-array": "^3.1.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.1",
"d3-transition": "^3.0.1",
"date-fns": "^2.25.0",
"easyqrcodejs": "^4.4.10",
"formik": "^2.2.9",
"lodash": "^4.17.21",
"mobx": "^6.3.9",
"mobx-react": "^7.2.1",
"mobx-state-tree": "^5.1.0",
"next": "12",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.35.2",
"yarn": "^1.22.10",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/d3-array": "^3.0.2",
"@types/d3-scale": "^4.0.2",
"@types/d3-selection": "^3.0.1",
"@types/d3-shape": "^3.0.2",
"@types/jest": "^27.4.0",
"@types/jest-axe": "^3.5.3",
"@types/lodash": "^4.14.176",
"@types/react": "17.0.14",
"eslint": "7.30.0",
"eslint-config-next": "11.0.1",
"jest": "^27.4.7",
"jest-axe": "^5.0.1",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}