2021-06-18 13:05:06 +02:00
|
|
|
{
|
|
|
|
"name": "playground",
|
|
|
|
"version": "1.0.0-dev",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"dist/**/*"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2022-07-25 10:37:34 +02:00
|
|
|
"serve": "node devEnv/cli.js --serve --dev",
|
|
|
|
"serve:ci": "node devEnv/cli.js --serve",
|
2022-06-15 20:23:26 +02:00
|
|
|
"build": "node devEnv/cli.js",
|
2022-07-25 10:37:34 +02:00
|
|
|
"build:static": "echo 'building for vercel' && yarn run build",
|
|
|
|
"typecheck": "tsc --noEmit",
|
2022-02-28 13:15:27 +01:00
|
|
|
"test": "playwright test --config=devEnv/playwright.config.ts",
|
2022-06-13 14:47:07 +02:00
|
|
|
"test:ci": "percy exec -- playwright test --reporter=dot --config=devEnv/playwright.config.ts --project=chromium"
|
2021-06-18 13:05:06 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-07-07 16:32:32 +02:00
|
|
|
"@percy/cli": "^1.6.0",
|
2022-06-10 13:16:34 +02:00
|
|
|
"@percy/playwright": "^1.0.4",
|
2022-07-07 16:32:32 +02:00
|
|
|
"@playwright/test": "^1.23.1",
|
2021-07-23 14:04:01 +02:00
|
|
|
"@react-three/drei": "^7.2.2",
|
|
|
|
"@react-three/fiber": "^7.0.6",
|
2021-06-18 13:05:06 +02:00
|
|
|
"@theatre/core": "workspace:*",
|
2021-09-06 10:19:10 +02:00
|
|
|
"@theatre/r3f": "workspace:*",
|
2021-06-18 13:05:06 +02:00
|
|
|
"@theatre/studio": "workspace:*",
|
|
|
|
"@types/jest": "^26.0.23",
|
|
|
|
"@types/lodash-es": "^4.17.4",
|
|
|
|
"@types/node": "^15.6.2",
|
|
|
|
"@types/react": "^17.0.9",
|
2022-07-25 10:37:34 +02:00
|
|
|
"esbuild": "^0.13.15",
|
2021-07-23 14:04:01 +02:00
|
|
|
"three": "^0.130.1",
|
2022-06-24 14:22:08 +02:00
|
|
|
"typescript": "^4.4.2"
|
2021-06-18 13:05:06 +02:00
|
|
|
}
|
|
|
|
}
|