-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "@computas/nx-yarn",
"version": "1.0.0",
"main": "src/index.js",
"executors": "./executors.json",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"copy-files": "cpy './{package.json,README.md,LICENSE,executors.json}' ./dist/ && cpy ./src/**/{*.d.ts,*.json} ./dist",
"prepublishOnly": "cd .. && yarn build && yarn copy-files",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"@angular-devkit/schematics": "^13.3.6",
"@nrwl/devkit": "^14.1.9",
"@nrwl/workspace": "^14.1.9",
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"cpy-cli": "^4.1.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^12.4.2",
"nx": "^14.1.9",
"pinst": "^3.0.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"lint-staged": {
"{src,.}/*.{js,ts,json,md}": [
"prettier --config .prettierrc --write",
"eslint"
]
},
"engines": {
"node": ">=14"
},
"packageManager": "[email protected]"
}