-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.54 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
{
"name": "@jtbennett/ts-project",
"author": "John Bennett",
"private": true,
"version": "1.0.0-rc.4",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"lint:all": "yarn workspaces foreach run lint",
"test:all": "yarn workspaces foreach run test",
"clean:all": "yarn workspaces foreach run clean",
"build:all": "yarn workspaces foreach run build",
"verify:all": "yarn test:all && yarn clean:all && yarn build:all && yarn lint:all --max-warnings 0",
"version:all": "yarn workspaces foreach version $0 && git commit -am \"v$0\" && git tag -a \"v$0\" -m \"v$0\"",
"purge:all": "yarn workspaces foreach run purge && rimraf './node_modules'",
"ctsp:dev": "yarn workspace @jtbennett/create-ts-project dev --no-yarn",
"ctsp:test": "yarn workspace @jtbennett/create-ts-project test",
"tsp:dev": "yarn workspace @jtbennett/ts-project-scripts dev --no-yarn",
"tsp:test": "yarn workspace @jtbennett/ts-project-scripts test",
"utils:test": "yarn workspace @jtbennett/ts-project-cli-utils test"
},
"devDependencies": {
"@types/jest": "26.0.14",
"@types/node": "^12.12.62",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-node": "^11.1.0",
"jest": "26.4.2",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "~4.0.3"
},
"prettier": {
"trailingComma": "all"
}
}