-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 2.44 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
68
69
70
71
{
"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": {
"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",
"serve-library-viewer": "node scripts/serve-library-viewer.js"
},
"devDependencies": {
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"cypress": "^13.3.0",
"eslint": "~8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "~4.6.2",
"express": "^4.20.0",
"file-loader": "^6.2.0",
"http-proxy-middleware": "^3.0.3",
"lint-staged": "^13.1.2",
"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.3.3",
"webpack": "~5.94.0"
},
"engines": {
"node": ">= 20"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{css,scss,js,json,ts,tsx}": "prettier --write"
},
"resolutions": {
"@types/react": "^18.3.2",
"sax": "^1.4.1",
"three-bmfont-text": "3.0.1"
},
"packageManager": "yarn@4.3.1"
}