-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.89 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
{
"name": "smol-auth-root",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc && npm run pkg-copy && npm run pkg-install",
"pkg-copy": "cp smol-auth-core/package.json lib/smol-auth-core && cp smol-auth-core/types.d.ts lib/smol-auth-core && cp smol-auth-core/README.md lib/smol-auth-core && cp smol-auth-express/package.json lib/smol-auth-express && cp smol-auth-express/README.md lib/smol-auth-express && cp smol-auth-express/types.d.ts lib/smol-auth-express && cp smol-auth-client/package.json lib/smol-auth-client && cp smol-auth-client/README.md lib/smol-auth-client && cp smol-auth-client/types.d.ts lib/smol-auth-client",
"pkg-install": "cd lib/smol-auth-core && npm install --prod && npm link && cd ../smol-auth-express && npm install --prod && npm link smol-auth-core && npm link && cd ../smol-auth-client && npm link",
"start-example:api": "cd api-example && npm install && npm link smol-auth-express && concurrently \"npm run docker:start\" \"npm run dev\"",
"docker:stop":"cd api-example && npm run docker:stop",
"start-example:client":"cd client-example && npm install && npm link smol-auth-client && npm run dev",
"install:all":"npm install && cd smol-auth-core && npm install && cd ../smol-auth-express && npm install && npm link smol-auth-core",
"publish:core":"cd lib/smol-auth-core && npm publish",
"publish:express":"cd lib/smol-auth-express && npm publish",
"publish:client":"cd lib/smol-auth-client && npm publish",
"publish:all":"publish:core && publish:express && publish:client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reenphygeorge/smol-auth.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/reenphygeorge/smol-auth/issues"
},
"homepage": "https://github.com/reenphygeorge/smol-auth#readme",
"devDependencies": {
"concurrently": "^8.2.2"
}
}