-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 876 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 876 Bytes
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
{
"name": "@opencrvs/mosip",
"version": "2.0.0-rc.2",
"license": "MPL-2.0",
"private": true,
"packageManager": "yarn@1.22.13",
"engines": {
"node": "23.9.x"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"prettier": "^3.4.2",
"turbo": "^2.8.20",
"typescript": "^5.6.3"
},
"scripts": {
"dev": "turbo run dev",
"test": "yarn workspace @opencrvs/mosip-api run test",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.ts",
"set-version": "node -e \"const fs=require('fs'),v=process.argv[1];['package.json',...fs.readdirSync('packages').map(d=>'packages/'+d+'/package.json')].forEach(f=>fs.writeFileSync(f,JSON.stringify({...require('./'+f),version:v},null,2)+'\\n'))\""
}
}