-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 923 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
{
"name": "cdn",
"private": true,
"author": "Maximous Black <[email protected]>",
"license": "MIT",
"repository": "https://github.com/nestdotland/cdn",
"description": "Nest CDN",
"scripts": {
"ts": "ts-node",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "echo no tests implemented",
"fmt": "prettier --check .",
"fmt:fix": "prettier --write ."
},
"dependencies": {
"@supabase/supabase-js": "^1.30.7",
"next": "^12.1.0",
"node-fetch": "^3.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.39",
"eslint": "8.10.0",
"eslint-config-next": "^12.1.0",
"prettier": "^2.5.1",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
},
"engines": {
"node": ">=14"
}
}