forked from tmarrinan/webdev-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 738 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 738 Bytes
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
{
"name": "rest_server",
"description": "REST Server",
"version": "1.0.0",
"author": {
"name": "Jasper Olson",
"email": "Olso3797@stthomas.edu"
},
"contributors": [
"Jasper Olson",
"Andy Harnisch",
"Nate Goenner"
],
"repository": {
"type": "git",
"url": "https://github.com/Jespr0/webdev-rest"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"sqlite3": "^5.1.6",
"vue": "^3.3.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.4.0",
"vite": "^4.4.11"
}
}