-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
{
"name": "picamera-server",
"version": "0.1.0",
"description": "Front-end to view and control the PiCamera on a Raspberry Pi!",
"keywords": [
"front-end",
"raspberry-pi",
"picamera"
],
"author": {
"name": "UnsignedArduino",
"email": "UnsignedArduino@outlook.com",
"url": "https://github.com/UnsignedArduino"
},
"contributors": [
{
"name": "UnsignedArduino",
"email": "UnsignedArduino@outlook.com",
"url": "https://github.com/UnsignedArduino"
}
],
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"writeLint": "next lint --fix",
"format": "yarn prettier --check .",
"writeFormat": "yarn prettier --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@popperjs/core": "2.11.7",
"@types/node": "20.4.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"bootstrap": "^5.3.0",
"next": "13.4.9",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-toastify": "^9.1.3",
"scrypt-async": "^2.0.1",
"typescript": "5.1.6"
},
"devDependencies": {
"eslint": "8.23.1",
"eslint-config-next": "12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "3.0.0"
}
}