-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "@basemaps/core",
"version": "0.0.1",
"private": true,
"repository": "git@github.com:linz/basemaps.git",
"author": {
"name": "Land Information New Zealand",
"url": "https://linz.govt.nz",
"organization": true
},
"license": "MIT",
"scripts": {
"lint": "eslint . --quiet --fix --report-unused-disable-directives --ignore-path .gitignore",
"test": "cross-env NODE_OPTIONS=--enable-source-maps lerna run test --parallel",
"clean": "tsc -b --clean && rimraf 'packages/*/build' && npm run clean:dist",
"clean:dist": "rimraf 'packages/*/dist' && rimraf 'packages/_infra/cdk.out'",
"clean:modules": "rimraf 'packages/*/node_modules' && rimraf node_modules",
"build": "tsc -b"
},
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@linzjs/style": "^5.4.0",
"@types/aws-lambda": "^8.10.75",
"@types/geojson": "^7946.0.7",
"@types/node": "^20.14.8",
"@types/sinon": "^17.0.2",
"conventional-github-releaser": "^3.1.5",
"cross-env": "^7.0.3",
"esbuild": "^0.19.8",
"lerna": "^8.0.0",
"rimraf": "^5.0.5",
"sinon": "^17.0.1"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@types/**",
"**/react"
]
},
"resolutions": {
"@chunkd/core": ">=10.0.0",
"hosted-git-info": ">=2.8.9",
"lodash": ">=4.17.21",
"trim-newlines": ">=3.0.1 <4.0.0",
"normalize-url": ">=4.5.1 <5.0.0",
"ansi-regex": ">=5.0.1 <6.0.0"
}
}