-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 985 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
{
"name": "@iambpn/auths-meta",
"version": "1.0.0",
"description": "Authentication System inspired by Auth0",
"main": "./backend/dist/main.js",
"scripts": {
"dev": "npm run dev -w frontend & npm run dev -w backend",
"build": "npm run build --workspaces",
"test": "echo \"Error: no test specified ofr auths\" && exit 1",
"version": "npm version -w backend -- ",
"pack": "npm pack -w backend",
"publish": "npm run build && npm publish --access=public -w backend",
"publish:dry": "npm publish --dry-run -w backend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iambpn/auths.git"
},
"keywords": [],
"author": "Bipin Maharjan",
"license": "ISC",
"bugs": {
"url": "https://github.com/iambpn/auths/issues"
},
"homepage": "https://github.com/iambpn/auths#readme",
"workspaces": [
"backend",
"frontend"
],
"devDependencies": {
"shx": "^0.3.4"
},
"volta": {
"node": "20.10.0"
}
}