-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
35
36
37
38
39
40
41
{
"name": "bitprint",
"description": "Print your Bitwarden vault.",
"version": "1.6.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/krestaino/bitprint.git"
},
"scripts": {
"format": "prettier --write '**/*.{css,js,json,md}'",
"setup": "yarn install && node tasks/setup.js",
"setup:client": "yarn --cwd client/ install",
"start": "dotenv -e .env concurrently \"yarn start:client\"",
"start:client": "yarn --cwd client/ start",
"build": "dotenv -e .env node tasks/build.js",
"build:client": "yarn --cwd client/ build",
"serve": "set NODE_ENV=production && dotenv -e .env concurrently \"yarn serve:client\"",
"serve:client": "yarn --cwd client/ serve"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,js,json,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"concurrently": "^5.0.0",
"consola": "^2.11.0",
"dotenv-cli": "^3.0.0",
"execa": "^3.3.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.19.1"
}
}