-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
57 lines (57 loc) · 1.74 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
{
"name": "monorepo-base",
"private": true,
"license": "MIT",
"engines": {
"yarn": ">=1.15.2"
},
"scripts": {
"format": "wsrun -c format",
"format:fix": "wsrun -c format:fix",
"lint": "wsrun -c lint",
"lint:fix": "wsrun -c lint:fix",
"typecheck": "wsrun -c typecheck",
"build": "tsc --build ./tsconfig.prod.json",
"watch": "yarn build --watch",
"clean": "wsrun -c clean",
"test": "wsrun -c test",
"test:fix": "yarn lint:fix && yarn format:fix && yarn test && yarn typecheck",
"check-examples": "yarn ts-node ./scripts/check-examples.ts",
"prerelease": "yarn lint && yarn format && yarn test && yarn typecheck",
"release": "yarn build && yarn changeset publish",
"no-git-changes": "./scripts/no-git-changes.sh"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.17.0",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.176",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@types/proxyquire": "^1.3.28",
"@types/tmp": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"dotenv": "^10.0.0",
"earljs": "^0.1.10",
"eslint-config-typestrict": "^1.0.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.10.0",
"eslint-plugin-unused-imports": "^1.1.5",
"eslint": "^7",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"proxyquire": "^2.1.3",
"ts-essentials": "^9.0.0",
"ts-node": "^10.4.0",
"typescript": "^4",
"wsrun": "^5.2.4"
}
}