-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·73 lines (73 loc) · 2.16 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "agnoc",
"private": true,
"license": "MIT",
"scripts": {
"build": "npm-run-all 'build:*'",
"build:packages": "lerna run build",
"clean": "lerna run clean",
"dependency:upgrade": "ncu --upgrade --peer --deep && yarn-deduplicate --strategy fewer && yarn install",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel 'lint:!(fix)'",
"lint:js": "eslint --cache --max-warnings 0 .",
"lint:js:fix": "eslint --fix .",
"lint:style": "prettier --check .",
"lint:style:fix": "prettier --write .",
"lint:types": "tsc",
"prepare": "husky install",
"test": "npm-run-all 'test:*'",
"test:packages": "lerna run test",
"version": "npm run lint:js:fix && npm run lint:style:fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.13",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@tsconfig/node14": "^1.0.3",
"@types/chai": "^4.3.4",
"@types/debug": "^4.1.7",
"@types/mocha": "^10.0.1",
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.13.0",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.9",
"babel-plugin-module-resolver": "^5.0.0",
"chai": "^4.3.7",
"commitizen": "^4.3.0",
"core-js": "^3.27.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"hygen": "^6.2.11",
"json": "^11.0.0",
"lerna": "^6.4.1",
"lint-staged": ">=13.1.1",
"npm-check-updates": "^16.6.5",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "2.8.4",
"sinon": "^15.0.1",
"sinon-chai": "^3.7.0",
"typescript": "^4.9.5",
"yarn-deduplicate": "^6.0.1"
},
"engines": {
"node": ">=12.3"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{md,json,yaml,yml}": "prettier -w"
}
}