forked from Reflct/reflct
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.69 KB
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
{
"name": "reflct",
"version": "1.0.0",
"private": true,
"type": "module",
"authors": [
"In Ha Ryu <inha.ryu.97@gmail.com>"
],
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/reflct/reflct.git"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@playwright/test": "^1.49.1",
"@rollup/plugin-babel": "^6.0.4",
"@types/node": "^22.10.2",
"lerna": "^8.1.9",
"ts-node": "^10.9.2",
"tsx": "^4.19.3"
},
"scripts": {
"version": "lerna version",
"build": "lerna run build",
"test:env": "bash __test__/create_env.sh",
"test:env:local": "tsx __test__/create_env_development.ts development",
"test:env:staging": "tsx __test__/create_env_development.ts staging",
"test:env:prod": "tsx __test__/create_env_development.ts production",
"pack": "lerna exec -- npm pack",
"test:snapshot:dev": "playwright test **/*.spec.ts --grep \"development\"",
"test:snapshot:staging": "playwright test **/*.spec.ts --grep \"staging\"",
"test:snapshot:prod": "playwright test **/*.spec.ts --grep \"production\"",
"test:snapshot:dev:update": "playwright test **/*.spec.ts --grep \"development\" --update-snapshots",
"test:snapshot:staging:update": "playwright test **/*.spec.ts --grep \"staging\" --update-snapshots",
"test:snapshot:prod:update": "playwright test **/*.spec.ts --grep \"production\" --update-snapshots"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.31.0",
"@mkkellogg/gaussian-splats-3d": "0.4.7",
"concurrently": "^9.0.1"
}
}