forked from mistic100/Photo-Sphere-Viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.29 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": [
"packages/*"
],
"scripts": {
"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": "yarn doc:vuepress && yarn doc:typedoc",
"doc:typedoc": "node ./build/generate-typedoc-readme.mjs && typedoc --plugin typedoc-plugin-extras --out public/api",
"doc:vuepress": "cross-env NODE_OPTIONS=--openssl-legacy-provider vuepress build docs",
"doc:serve": "cross-env NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs",
"ci:build": "turbo run lint build test --cache-dir=.turbo",
"ci:version": "set-versions --workspaces",
"ci:publish": "turbo run publish-dist --concurrency=1",
"watch": "node build/liveserver.mjs"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/three": "^0.159.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vuepress/plugin-active-header-links": "^1.9.9",
"@vuepress/plugin-back-to-top": "^1.9.9",
"@vuepress/plugin-google-analytics": "^1.9.9",
"alive-server": "^1.3.0",
"codesandbox-import-utils": "^2.2.3",
"cross-env": "^7.0.3",
"date-fns": "^2.30.0",
"esbuild-plugin-external-global": "^1.0.1",
"esbuild-sass-plugin": "^2.16.0",
"eslint": "^8.55.0",
"lodash": "^4.17.21",
"marked": "^4.2.3",
"mocha": "^10.2.0",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"raw-loader": "^4.0.2",
"sass": "^1.69.0",
"scss-bundle": "^3.1.2",
"set-versions": "^1.0.3",
"sort-package-json": "^2.6.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.11.1",
"typedoc": "^0.25.0",
"typedoc-plugin-extras": "^3.0.0",
"typescript": "^5.2.2",
"vue-material": "^1.0.0-beta-16",
"vue-slider-component": "^3.2.24",
"vue-swatches": "^2.1.1",
"vuepress": "^1.9.9",
"yaml": "^2.3.1"
}
}