-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 2.2 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
{
"private": true,
"workspaces": {
"packages": [
"libraries/*",
"viewer"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vertigis/vertigis-web-incubator.git"
},
"author": "Eric Parsons <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vertigis/vertigis-web-incubator/issues"
},
"homepage": "https://github.com/vertigis/vertigis-web-incubator#readme",
"scripts": {
"build": "yarn build:libraries && yarn build:viewer && yarn copy-static-files",
"build:libraries": "yarn workspaces foreach -Rpt --from \"libraries/!(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": {
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"cypress": "^12.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.19.2",
"file-loader": "^6.2.0",
"http-proxy-middleware": "^3.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"shx": "^0.3.4",
"simple-git-hooks": "^2.8.1",
"ts-loader": "^9.5.1",
"typescript": "~5.3.3",
"webpack": "~5.90.2"
},
"resolutions": {
"@types/react": "^18.3.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,json,ts,tsx,md,css,scss}": "prettier --write"
},
"packageManager": "[email protected]"
}