theatre/packages/playground/package.json

49 lines
1.4 KiB
JSON
Raw Normal View History

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": {
2023-07-16 22:19:21 +02:00
"serve": "vite",
"serve:ci": "vite build && vite preview",
"build": "vite build --force",
"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",
"test:ci": "playwright test --reporter=dot --config=devEnv/playwright.config.ts --project=chromium"
2021-06-18 13:05:06 +02:00
},
"devDependencies": {
"@percy/cli": "^1.16.0",
2022-06-10 13:16:34 +02:00
"@percy/playwright": "^1.0.4",
"@playwright/test": "^1.29.1",
2021-07-23 14:04:01 +02:00
"@react-three/drei": "^7.2.2",
"@react-three/fiber": "^7.0.6",
2023-07-16 22:19:21 +02:00
"@rollup/plugin-virtual": "^3.0.1",
2021-06-18 13:05:06 +02:00
"@theatre/core": "workspace:*",
"@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",
2023-07-16 22:19:21 +02:00
"@vitejs/plugin-react": "^4.0.0",
"@vitejs/plugin-react-swc": "^3.3.2",
2023-02-07 18:50:57 +01:00
"esbuild": "^0.17.6",
"esbuild-register": "^3.4.2",
2023-07-16 22:19:21 +02:00
"parcel": "^2.9.3",
2021-07-23 14:04:01 +02:00
"three": "^0.130.1",
2023-07-16 22:19:21 +02:00
"typescript": "^4.4.2",
"vite": "^4.3.9",
"vite-plugin-commonjs": "^0.8.0",
"vite-plugin-html-template": "^1.2.0",
"vite-plugin-mpa": "^1.2.0"
},
"dependencies": {
"@originjs/vite-plugin-commonjs": "^1.0.3"
2021-06-18 13:05:06 +02:00
}
}