forked from sqrl-planner/sqrl-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.07 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
{
"name": "sqrl-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:coverage": "jest --coverage",
"prepare": "husky install",
"format": "prettier --write .",
"lint-staged": "lint-staged"
},
"dependencies": {
"@apollo/client": "^3.6.6",
"@chakra-ui/icons": "^2.0.2",
"@chakra-ui/react": "^2.2.1",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@next/bundle-analyzer": "^12.1.6",
"apollo3-cache-persist": "^0.14.0",
"color": "^4.0.1",
"cross-fetch": "^3.1.5",
"framer-motion": "^6.3.11",
"fuse.js": "^6.6.2",
"graphql": "^15.5.1",
"next": "^12.0.8",
"next-i18next": "^11.0.0",
"npm": "^8.12.1",
"react": "^18.1.0",
"react-countup": "^6.1.1",
"react-dom": "^18.1.0",
"react-icons": "^4.2.0",
"react-string-replace": "^0.4.4",
"styled-components": "^5.3.0",
"use-debounce": "^7.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/color": "^3.0.2",
"@types/jest": "^27.5.1",
"@types/luxon": "^2.0.0",
"@types/node": "^17.0.10",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/styled-components": "^5.1.12",
"@types/uuid": "^8.3.1",
"autoprefixer": "^10.4.2",
"babel-jest": "^28.1.0",
"dayjs": "^1.10.6",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.0.2",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"postcss": "^8.4.5",
"rrule": "^2.6.8",
"tailwindcss": "^3.0.15",
"ts-jest": "^28.0.2",
"typescript": "4.3.5"
},
"lint-staged": {
"**/*.{js,jsx,json}": [
"eslint . --fix",
"prettier --write ."
]
}
}