-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.29 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
{
"repository": {
"type": "git",
"url": "git@github.com:unep-grid/mapx.git"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"release-it": "^18.1.2"
},
"version": "1.13.19",
"scripts": {
"prepare": "husky",
"commit": "cz",
"release": "release-it",
"release:alpha": "release-it --preRelease=alpha",
"release:beta": "release-it --preRelease=beta",
"test": "npm run test:app",
"test:app": "cd app && npm run build:app && npm run test",
"build:app_local": "cd app && ./build.sh local",
"build:api_local": "cd api && ./build.sh local",
"build:local": "npm run build:app_local && npm run build:api_local",
"init": "npm install && npm run init:app && npm run build:local",
"init:app": "cd app && npm run init:all",
"doc:sdk": "cd app/src/js/sdk && npm run jsdoc",
"ci": "npm install && npm run ci:app && npm run ci:api",
"ci:app": "cd app && npm run ci",
"ci:api": "cd api && npm run ci"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@types/chroma-js": "^3.1.1",
"@types/mapbox-gl": "^3.4.1"
}
}