forked from mistic100/Photo-Sphere-Viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.79 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
{
"name": "photo-sphere-viewer",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"docs",
"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 --parallel",
"serve:filter": "run() { turbo run watch --parallel --filter=$1... --filter=//; }; 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:version": "set-versions --workspaces",
"ci:publish": "turbo run publish-dist --concurrency=1",
"build-doc": "node ./build/generate-typedoc-readme.mjs && typedoc --plugin typedoc-plugin-extras --out public/api",
"watch": "node build/liveserver.mjs"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/three": "^0.161.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"alive-server": "^1.3.0",
"cross-env": "^7.0.3",
"esbuild-plugin-external-global": "^1.0.1",
"esbuild-sass-plugin": "^3.1.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"scss-bundle": "^3.1.2",
"set-versions": "^1.0.3",
"sort-package-json": "^2.8.0",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-stylistic": "^0.4.3",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"tsup": "^8.0.1",
"turbo": "^1.12.2",
"typedoc": "^0.25.0",
"typedoc-plugin-extras": "^3.0.0",
"typescript": "^5.3.3"
}
}