forked from padloc/padloc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
33
34
{
"name": "padloc",
"private": true,
"version": "3.0.10",
"description": "A minimalist password manager",
"author": "Martin Kleinschrodt <[email protected]>",
"license": "GPL-3.0",
"homepage": "https://padlock.io/",
"repository": {
"type": "git",
"url": "git+https://github.com/maklesoft/padlock.git"
},
"main": "main.js",
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^3.16.4",
"typescript": "^3.4.3"
},
"dependencies": {},
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"pwa:build": "lerna run build --scope @padloc/pwa",
"pwa:start": "lerna run start --scope @padloc/pwa",
"server:start": "lerna run start --scope @padloc/server",
"start": "npm run pwa:build && lerna run --scope '@padloc/{server,pwa}' --parallel start",
"dev": "lerna run --parallel dev",
"repl": "cd packages/server && npm run repl && cd ../..",
"test": "lerna run test",
"locale:extract": "lerna run extract --scope '@padloc/locale'"
}
}