-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 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
{
"name": "@hello10/kitchen",
"version": "1.0.0",
"description": "Kitchen sink",
"main": "dist/index.js",
"exports": {
"./api": "./dist/api/index.js",
"./shared": "./dist/shared/index.js",
"./web": "./dist/web/index.js"
},
"scripts": {
"test": "npx jest --coverage",
"build": "npx babel src --out-dir dist",
"clean": "rm -rf ./node_modules; rm -rf ./dist; rm -f package-lock.json",
"reset": "npm run clean; npm install; npm link",
"dev": "npx babel src --watch --out-dir dist"
},
"author": "",
"license": "MIT",
"peerDependencies": {
"@supabase/auth-helpers-nextjs": "^0.5.2",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/supabase-js": "^2.1.0",
"graphql-yoga": "^3.0.0",
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@supabase/auth-helpers-nextjs": "^0.4.0",
"@supabase/auth-helpers-react": "^0.3.0",
"@supabase/supabase-js": "^2.0.0",
"babel-jest": "^29.3.1",
"encoding": "^0.1.13",
"graphql-yoga": "^3.0.0",
"jest": "^29.3.1",
"next": "^13.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"minimist": "^1.2.7",
"node-fetch-polyfill": "^2.0.6"
}
}