-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 989 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
42
43
44
45
46
{
"name": "conjoined",
"version": "0.4.3",
"description": "join nextjs with laravel api",
"module": "./dist/index.es.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"watch": "vite build --watch",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dillingham/conjoined.git"
},
"keywords": [
"react",
"laravel",
"nextjs"
],
"author": "dillingham",
"license": "MIT",
"bugs": {
"url": "https://github.com/dillingham/conjoined/issues"
},
"homepage": "https://github.com/dillingham/conjoined#readme",
"sideEffects": false,
"devDependencies": {
"@vitejs/plugin-react": "^1.3.0",
"vite": "^2.9.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"next": "^12.2.0",
"axios": "^0.27.2"
},
"peerDependencies": {
"react": "^18.2",
"react-dom": "^18.2",
"next": "^12.2",
"axios": "^0.27"
}
}