-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.56 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
{
"name": "@nodepen/monorepo",
"private": true,
"version": "1.0.0",
"description": "same grasshopper, new digs",
"author": "@cdriesler",
"repository": {
"type": "git",
"url": "https://github.com/nodepen/nodes.git"
},
"packageManager": "[email protected]",
"license": "MIT",
"scripts": {
"build": "npx turbo run build --no-daemon",
"build:ci": "npx turbo run build --filter=!./apps/*",
"dev": "npx turbo run dev --no-daemon",
"dev:speckle": "cd apps/speckle-server && yarn dev:docker:up && yarn dev",
"dev:rhino": "cd apps/rhino-compute-server && dotnet watch",
"lint": "npx turbo run lint --no-daemon --concurrency=1",
"lint:ci": "npx turbo run lint --no-daemon --concurrency=1 --filter=!./apps/*",
"test": "npx turbo run test --no-daemon",
"test:ci": "npx turbo run test --no-daemon --filter=./packages/nodes",
"install:ci": "npm install -D --arch=x64 --platform=linux turbo && npm install -D --arch=arm64 --platform=darwin turbo"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.7.6",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-jest": "^29.1.4",
"tsc-alias": "^1.8.10",
"tsc-watch": "^6.2.1",
"turbo": "^2.3.0",
"typescript": "^5.4.5"
},
"workspaces": [
"packages/core",
"packages/nodes",
"apps/nodepen-client"
]
}