-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 957 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
{
"name": "sooner",
"description": "A web application for making an ephemeral reading lists",
"authors": "Andrew Rosiclair",
"version": "1.0.0",
"private": true,
"engines": {
"node": "~20.9.0",
"npm": "~10.1.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build:app": "npm run build --workspace=@sooner/app",
"app": "npm run serve --workspace=@sooner/app",
"api": "npm start --workspace=@sooner/api",
"api:dev": "npm run dev --workspace=@sooner/api",
"build:ext": "npm run build --workspace=@sooner/browser-ext",
"ext": "npm run serve --workspace=@sooner/browser-ext",
"push": "npm start --workspace=@sooner/push-api",
"push:dev": "npm run dev --workspace=@sooner/push-api"
},
"devDependencies": {
"@vue/cli-plugin-eslint": "~4.5.0"
},
"dependencies": {
"open-graph-scraper": "^6.3.3"
}
}