-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.33 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.33 KB
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
{
"name": "manfred-export-app",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"description": "Manfred export app - Lemoncode Máster Front End TFM",
"scripts": {
"build": "turbo run build",
"start": "turbo run start type-check:watch",
"start:react": "npm start -- --filter=react-app --filter=\"./packages/*\"",
"start:md-lib": "npm start -- --filter=@lemoncode/manfred2md --filter=\"./packages/*\"",
"test": "turbo run test",
"type-check": "turbo run type-check",
"format": "prettier --write \"**/*.{ts,tsx,md,json,yml,html}\"",
"changeset": "changeset",
"publish-packages": "turbo run build --filter=./packages/* && changeset publish",
"prepare": "node ./prepare.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lemoncode/manfred-export-app.git"
},
"author": "Lemoncode",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lemoncode/manfred-export-app/issues"
},
"homepage": "https://github.com/Lemoncode/manfred-export-app#readme",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@types/node": "^18.14.1",
"husky": "^8.0.0",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"turbo": "^1.7.0"
},
"engines": {
"node": "^18.0.0"
}
}