-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 908 Bytes
/
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
{
"name": "next-secure-download",
"description": "A Next.js project to serve password-protected download links",
"version": "0.0.1",
"keywords": [
"nextjs",
"secure",
"nodejs"
],
"homepage": "https://github.com/nicnocquee/next-secure-download",
"author": {
"name": "Nico Prananta",
"url": "https://nico.fyi"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"format": "prettier -c .",
"lint": "next lint"
},
"dependencies": {
"next": "latest",
"react": "latest",
"react-dom": "latest"
},
"license": "MIT",
"devDependencies": {
"@types/node": "latest",
"@types/react": "latest",
"eslint": "^8",
"eslint-config-next": "^14",
"prettier": "latest",
"typescript": "latest"
},
"prettier": {
"bracketSpacing": true,
"singleQuote": false,
"trailingComma": "none"
}
}