forked from vertigis/vertigis-web-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.47 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
{
"private": true,
"workspaces": {
"packages": [
"samples/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/geocortex/vertigis-web-samples.git"
},
"author": "Ian Schmitz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geocortex/vertigis-web-samples/issues"
},
"homepage": "https://github.com/geocortex/vertigis-web-samples#readme",
"scripts": {
"build": "yarn build:samples && yarn build:viewer",
"build:samples": "node ./build.js",
"build:viewer": "cd viewer && yarn build",
"postinstall": "cd viewer && yarn",
"test": "concurrently -k -s first -n cra,cypress \"yarn start\" \"cypress run --browser chrome\"",
"test:watch": "concurrently -k -s first -n cra,cypress \"yarn start\" \"cypress open\"",
"start": "cd viewer && cross-env BROWSER=none yarn start"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"cross-spawn": "^7.0.3",
"cypress": "^5.5.0",
"husky": "^4.3.0",
"prettier": "^2.1.1",
"pretty-quick": "^3.1.0",
"typescript": "~4.0.5"
},
"cldr-data-urls-filter": "(cldr-core|cldr-numbers-modern)",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}