-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "jest-modules-test-template",
"author": "[email protected]",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "yarn workspaces foreach -ivpt --include '@test/*' run test",
"validate": "yarn workspaces foreach -Aivpt run validate",
"root:validate": "cd $INIT_CWD && tsc --build --pretty .",
"lint:check": "eslint .",
"lint:prettier:check": "prettier . --cache --check",
"lint:prettier:fix": "prettier . --cache --write",
"module:create": "node scripts/module-create.mjs",
"workspace:sync": "node scripts/workspace-config-sync.mjs",
"yarn:pkg-doctor": "yarn dlx @yarnpkg/doctor"
},
"workspaces": [
"modules/lib/**",
"modules/test/**"
],
"engines": {
"node": "16.x",
"yarn": "^1.22.0"
},
"dependencies": {
"@tsconfig/node16": "^1.0.3",
"tsconfig-paths": "^4.1.0"
},
"devDependencies": {
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^6.1.0",
"inquirer": "^9.1.2",
"prettier": "2.7.1",
"typescript": "^4.8.3"
},
"packageManager": "[email protected]",
"prettier": {
"semi": true
}
}