-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "@secretary/node",
"description": "Secretary Monorepo for NodeJS",
"author": "Aaron Scherer <[email protected]>",
"devDependencies": {
"@nrwl/nx-cloud": "latest",
"@types/assert": "1.4.2",
"@types/chai": "4.3.4",
"@types/chai-as-promised": "7.1.5",
"@types/eslint": "8.4.10",
"@types/mocha": "10.0.1",
"@types/node": "18.11.15",
"@types/nodecredstash": "2.0.0",
"@types/sinon": "10.0.13",
"@types/sinon-chai": "3.2.2",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"assert": "2.0.0",
"azure-keyvault": "3.0.4",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"eslint": "8.29.0",
"eslint-config-oclif": "4",
"eslint-config-oclif-typescript": "1.0.3",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.6.4",
"eslint-plugin-unicorn": "45.0.2",
"lerna": "6.1.0",
"mocha": "10.2.0",
"ms-rest-azure": "3.0.2",
"node-vault": "0.9.9",
"nodecredstash": "3.0.0",
"nx": "15.8",
"nyc": "15.1.0",
"sinon": "15.0.1",
"sinon-chai": "3.3.0",
"ts-node": "10.9.1",
"ts-sinon": "2.0.2",
"typemoq": "2.1.0",
"typescript": "4.9.4",
"unicorn": "0.0.1"
},
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "nx run-many --target=build",
"core": "lerna run build --scope=@secretary/core",
"lint": "nx run-many --target=lint",
"prepare": "nx build @secretary/core",
"prepublishOnly": "yarn preversion",
"preversion": "nx run-many --targets=lint,test,build",
"test": "nx run-many --target=test"
},
"workspaces": [
"packages/*"
]
}