forked from JeremyHeleine/Photo-Sphere-Viewer
-
-
Notifications
You must be signed in to change notification settings - Fork 686
/
package.json
67 lines (67 loc) · 2.26 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "photo-sphere-viewer",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"docs",
"cypress",
"packages/*"
],
"scripts": {
"postinstall": "turbo telemetry disable",
"build": "turbo run build",
"format": "prettier -w .",
"lint": "turbo run lint",
"test": "turbo run test",
"serve": "turbo run watch --concurrency 50",
"serve:filter": "run() { read filters; turbo run watch --concurrency 50 $filters; }; FORCE_COLOR=true node ./build/select-packages.mjs | run",
"npm-link": "turbo run npm-link --output-logs=new-only",
"doc:build": "turbo run build-doc --force",
"doc:serve": "turbo run serve-doc",
"ci:build": "turbo run lint build test --cache-dir=.turbo",
"ci:build-doc": "turbo run build-doc --cache-dir=.turbo",
"ci:e2e": "node ./build/start-and-test.mjs \"watch --e2e\" e2e:run",
"ci:version": "set-versions --workspaces",
"ci:publish": "turbo run publish-dist --concurrency=1",
"e2e:open": "cypress open --e2e --browser=electron",
"e2e:run": "cypress run --e2e --browser=electron",
"build-doc": "node ./build/generate-typedoc-readme.mjs && typedoc --plugin typedoc-plugin-extras --out public/api",
"watch": "node ./build/liveserver.mjs"
},
"devDependencies": {
"@stylistic/stylelint-plugin": "^3.1.0",
"@types/mocha": "^10.0.9",
"@types/three": "^0.169.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"alive-server": "^1.3.0",
"cypress": "^13.15.0",
"cypress-mochawesome-reporter": "^3.8.2",
"cypress-visual-regression": "^5.2.2",
"esbuild-sass-plugin": "^3.3.0",
"eslint": "^8.57.0",
"inquirer": "^12.0.0",
"mocha": "^10.8.2",
"mocha-junit-reporter": "^2.2.1",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"queue": "^7.0.0",
"scss-bundle": "^3.1.2",
"selfsigned": "^2.4.1",
"set-versions": "^1.0.3",
"sort-package-json": "^2.10.0",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"tsup": "^8.3.0",
"turbo": "^1.13.3",
"typedoc": "^0.26.7",
"typedoc-plugin-extras": "^3.1.0",
"typescript": "^5.6.2"
},
"resolutions": {
"yargs": "^16.2.0"
}
}