-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.3 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "reservando",
"version": "1.0.0",
"description": "Reservando monorepo",
"main": "index.js",
"scripts": {
"start": "npm run start -w @reservando/frontend & npm run start -w @reservando/backend",
"start:storybook": "npm run start -w @reservando/storybook",
"start:frontend": "npm run start -w @reservando/frontend",
"build": "npm run build -w @reservando/frontend -w @reservando/backend",
"watch": "npm run watch -w @reservando/frontend & npm run npm -w @reservando/backend",
"watch:frontend": "npm run watch -w @reservando/frontend",
"test": "NODE_ENV=test jest",
"test:clean-cache": "npm run test -- --clearCache",
"test:update": "npm run test -- --updateSnapshot",
"test:coverage": "./coverage.sh && codecov",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:fix": "npm run lint:prettier -- --write && npm run lint:eslint -- --fix",
"lint:eslint": "eslint '**/*.{js,ts,vue}'",
"lint:prettier": "prettier --check '**/*.{md,mdx,scss,json}'",
"copy": "rm -rf ./public/* && cp -r ./apps/frontend/dist/* ./public && mkdir ./public/design-system && cp -r ./apps/storybook/dist/* ./public/design-system",
"deploy": "npm run build && npm run copy && firebase deploy",
"create:page": "hygen page new"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fallemand/reservando.git"
},
"keywords": [],
"author": "it@reservando.club",
"license": "UNLICENSED",
"homepage": "https://reservando.club/",
"bugs": {
"url": "https://github.com/fallemand/reservando/issues"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@reservando/eslint-config": "^2.0.0",
"@vue/test-utils": "^1.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"codecov": "^3.8.1",
"hygen": "^6.0.4",
"jest": "^26.6.3",
"typescript": "^4.1.5",
"vue-jest": "^3.0.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{md,scss,json}": "prettier --write"
},
"workspaces": [
"./apps/*",
"./packages/*"
],
"engines": {
"npm": ">7",
"node": ">14"
}
}