-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.59 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.59 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"private": true,
"workspaces": {
"packages": [
"samples/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vertigis/vertigis-web-samples.git"
},
"author": "VertiGIS",
"license": "MIT",
"bugs": {
"url": "https://github.com/vertigis/vertigis-web-samples/issues"
},
"homepage": "https://github.com/vertigis/vertigis-web-samples#readme",
"scripts": {
"audit": "yarn npm audit --all --recursive --no-deprecations",
"build": "yarn build:samples && yarn build:viewer && yarn copy-static-files",
"build:samples": "yarn workspaces foreach -Rt --from \"samples/!(library-viewer)\" run build",
"build:viewer": "yarn workspace library-viewer run build",
"prettier": "prettier --write \"**/*.ts\" \"**/*.json\" \"**/*.tsx\" \"**/*.js\"",
"test": "concurrently -k -s first -n webpack,cypress \"yarn start\" \"cypress run --browser chrome\"",
"test:watch": "concurrently -k -s first -n webpack,cypress \"yarn start\" \"cypress open\"",
"start": "yarn workspace library-viewer start",
"copy-static-files": "node scripts/copy-static-files.js",
"preview": "node scripts/serve-library-viewer.js"
},
"devDependencies": {
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"cypress": "^15.9.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "~10.1.1",
"eslint-import-resolver-typescript": "~4.2.2",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-only-warn": "~1.1.0",
"eslint-plugin-react": "~7.37.4",
"eslint-plugin-react-hooks": "~5.2.0",
"express": "^4.20.0",
"file-loader": "^6.2.0",
"http-proxy-middleware": "^3.0.3",
"lint-staged": "^16.2.7",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"prettier": "^2.8.4",
"raw-loader": "^4.0.2",
"shx": "^0.3.4",
"simple-git-hooks": "^2.8.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "~5.6.3",
"webpack": "^5.104.1"
},
"engines": {
"node": ">= 20"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{css,scss,js,json,ts,tsx}": "prettier --write"
},
"resolutions": {
"@types/react": "^19.2.9",
"sax": "^1.4.1",
"three-bmfont-text": "3.0.1"
},
"packageManager": "yarn@4.12.0"
}