-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
{
"name": "auth-frontend",
"type": "module",
"version": "0.1.0",
"description": "Our modular Cognito based Auth portal to login and register users. Returns a JWT token to a redirect URL.",
"repository": {
"type": "git",
"url": "git+https://github.com/space-metaverse/auth-frontend.git"
},
"author": "SPACE",
"license": "MIT",
"bugs": {
"url": "https://github.com/space-metaverse/auth-frontend/issues"
},
"homepage": "https://github.com/space-metaverse/auth-frontend/#readme",
"scripts": {
"dev": "next dev -p 3003",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"@segment/snippet": "^4.15.3",
"@space-metaverse-ag/space-ui": "^1.5.2",
"next": "13.1.1",
"nookies": "^2.5.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.5",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/styled-components": "^5.1.26",
"eslint": "^8.31.0",
"eslint-config-next": "13.1.1",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.7.0",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "4.9.4"
}
}