-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.48 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
{
"name": "nextlove-turborepo",
"version": "0.0.1",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"pretest": "yarn build",
"test": "yarn workspace nextlove test && yarn workspace example-todo-app test",
"example:start": "cd apps/example-todo-app && yarn start",
"example:build:openapi": "cd apps/example-todo-app && yarn build:openapi",
"example:build:type": "cd apps/example-todo-app && yarn build:type",
"example:build:routespecs": "cd apps/example-todo-app && yarn build:routespecs",
"publish-packages": "cd packages/nextlove && yarn build && npm publish",
"example:test": "npm run build && cd apps/example-todo-app && yarn run ava",
"example:test-only:fast": "cd apps/example-todo-app && yarn run ava",
"example:test-only": "cd apps/example-todo-app && yarn build && yarn run ava"
},
"devDependencies": {
"@semantic-release/git": "10.0.1",
"@types/node": "^20.8.6",
"cpy-cli": "^4.2.0",
"eslint-config-custom": "*",
"mock-fs": "^5.2.0",
"prettier": "^2.7.1",
"semantic-release": "19.0.5",
"turbo": "latest"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"repository": "https://github.com/seamapi/nextlove"
}