-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
54 lines (54 loc) · 1.75 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
{
"name": "js",
"description": "Lightspark JS Projects",
"version": "1.0.0",
"private": true,
"main": "index.js",
"license": "Apache-2.0",
"scripts": {
"build-no-cache": "yarn build --force",
"build-sb": "turbo run build-sb",
"build": "turbo run build",
"build:watch": "turbo run build:watch",
"checks": "yarn deps:check && turbo lint format gql-codegen test circular-deps",
"circular-deps": "turbo run circular-deps",
"clean": "turbo run clean",
"clean-all": "./clean-all.sh",
"clean-resolve": "echo \"Use only as a last resort when clean-all fails to resolve an issue. In general yarn.lock should only be modified when dependencies explicitly change.\" && yarn clean-all && rm yarn.lock && yarn",
"deps:check": "manypkg check",
"deps:fix": "manypkg fix",
"dev": "turbo run dev --concurrency 14",
"docs": "turbo run docs",
"format": "turbo run format",
"format:fix": "turbo run format:fix",
"gql-codegen": "turbo run gql-codegen",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"release": "turbo build && changeset publish",
"start:prod": "VITE_PROXY_TARGET=https://app.lightspark.com yarn start",
"start": "./start.sh",
"test": "turbo run test",
"test:ui": "turbo run test:ui",
"test:integration": "turbo run test:integration",
"types": "turbo run types"
},
"workspaces": [
"packages/*",
"packages/private/*",
"apps/*",
"apps/private/*",
"apps/examples/*"
],
"dependencies": {
"@changesets/cli": "^2.27.1",
"@manypkg/cli": "^0.21.0",
"@octokit/auth-action": "^4.0.1",
"octokit": "^4.0.2",
"ts-prune": "^0.10.3",
"turbo": "^1.13.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}