-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.98 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
{
"name": "nossas-org",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3003",
"lint-staged": "lint-staged",
"lint": "eslint '**/*.{ts,tsx}' --fix",
"format": "prettier '**/*.{ts,tsx}' --write"
},
"dependencies": {
"@apollo/client": "^3.3.18",
"@apollo/react-hooks": "^4.0.0",
"@apollo/react-ssr": "^4.0.0",
"@chakra-ui/react": "^1.6.2",
"@elastic/apm-rum": "^5.8.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@rjsf/core": "^2.4.1",
"@stripe/react-stripe-js": "^1.2.2",
"@stripe/stripe-js": "^1.11.0",
"@types/react-ga": "^2.3.0",
"apollo-boost": "^0.4.9",
"apollo-link-ws": "^1.0.20",
"formik": "^2.2.6",
"framer-motion": "^4",
"graphql": "^15.5.0",
"isomorphic-unfetch": "^3.1.0",
"next": "12",
"next-google-fonts": "^1.2.1",
"next-i18next": "^8.3.0",
"next-useragent": "^2.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.1",
"react-icons": "^4.2.0",
"react-number-format": "^4.5.1",
"react-responsive-carousel": "^3.2.11",
"stripe": "^8.132.0",
"subscriptions-transport-ws": "^0.9.18",
"typescript": "^5.3.3",
"yup": "^0.32.8"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"lint-staged": "^10.5.3",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1"
},
"pre-commit": "lint-staged",
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}