forked from nodepen/nodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.53 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
{
"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"
},
"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.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"copyfiles": "^2.4.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"tsc-alias": "^1.8.6",
"tsc-watch": "^6.0.4",
"turbo": "^1.10.3",
"typescript": "5.1.3"
},
"workspaces": [
"packages/core",
"packages/nodes",
"apps/nodepen-client"
]
}