-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 968 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 968 Bytes
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
{
"name": "samepass",
"version": "0.1.0",
"description": "Use the same password for every website? randomise the password with SamePass.",
"author": "0xAzureDev",
"repository": {
"type": "git",
"url": "https://github.com/0xAzureDev/samepass.git"
},
"homepage": "https://github.com/0xAzureDev/samepass#readme",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.6",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.4"
},
"devDependencies": {
"@types/node": "18.8.4",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"eslint": "8.25.0",
"prettier": "^2.7.1",
"eslint-config-next": "12.3.1",
"typescript": "4.8.4"
}
}