This repository has been archived by the owner on Oct 8, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
108 lines (108 loc) · 2.92 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@opensaas-keystone/next-auth-signup-frontend",
"version": "8.1.2",
"private": true,
"description": "Signup Portal Frontend",
"license": "ISC",
"author": "",
"main": "index.js",
"scripts": {
"build": "next build",
"dev": "next -p 7777",
"start": "next start -p 3000",
"test": "NODE_ENV=test jest --watch"
},
"eslintConfig": {
"extends": [
"plugin:@next/next/recommended"
],
"rules": {
"@typescript-eslint/no-unsafe-assignment": 0,
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx",
"tsx"
]
}
],
"react/jsx-props-no-spreading": [
1,
{
"exceptions": [
"Component",
"App"
]
}
]
}
},
"jest": {
"setupFilesAfterEnv": [
"./jest.setup.js"
]
},
"dependencies": {
"@apollo/client": "^3.7.12",
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@babel/runtime": "^7.21.0",
"@babel/runtime-corejs3": "^7.21.0",
"@next/bundle-analyzer": "^13.4.2",
"@preconstruct/next": "^4.0.0",
"core-js": "^3.23.5",
"date-fns": "^2.30.0",
"deepmerge": "^4.3.1",
"downshift": "^6.1.12",
"eslint-config-next": "^13.4.2",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"graphql-upload": "^12.0.0",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"next": "^13.4.2",
"next-auth": "^4.22.1",
"nprogress": "^0.2.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-bootstrap": "^2.7.3",
"react-dom": "^18.2.0",
"react-transition-group": "^4.4.5",
"styled-components": "^5.3.9",
"typescript": "^5.0.4",
"waait": "^1.0.5"
},
"devDependencies": {
"@apollo/react-testing": "^4.0.0",
"@next/eslint-plugin-next": "^13.4.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/nprogress": "^0.2.0",
"@types/styled-components": "^5.1.26",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.1.3",
"babel-plugin-styled-components": "^1.13.3",
"casual": "^1.6.2",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^6.15.0",
"eslint-config-wesbos": "^3.2.3",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"prettier": "^2.8.7",
"react-test-renderer": "^18.2.0"
}
}