-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
83 lines (83 loc) · 2.42 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
74
75
76
77
78
79
80
81
82
83
{
"private": true,
"name": "@sourcegraph/codemod-root",
"version": "0.0.0",
"description": "Monorepo for a collection of codemods powered by ts-morph and PostCSS",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/codemod.git"
},
"scripts": {
"transform": "yarn workspace @sourcegraph/codemod-cli transform",
"test": "jest",
"release": "yarn build && yarn changeset publish",
"format": "prettier '**/*.{js?(on),ts?(x),scss,md,yml}' --write --list-different --ignore-path ./.prettierignore",
"format:check": "yarn format --write=false",
"lint": "eslint --ignore-pattern 'demo-app' --cache .",
"build": "tsc --build",
"build:clean": "tsc --build --clean && rimraf ./packages/*/dist ./packages/*/*.tsbuildinfo && yarn build",
"build:watch": "tsc --build --watch",
"postinstall": "yarn build"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@ts-morph/bootstrap": "^0.13.0",
"camelcase": "^6.2.0",
"commander": "^8.1.0",
"css-modules-loader-core": "^1.1.0",
"lodash": "^4.17.21",
"postcss": "^8.3.6",
"postcss-nested": "^5.0.6",
"postcss-scss": "^4.0.0",
"postcss-selector-parser": "^6.0.6",
"prettier-eslint": "^13.0.0",
"signale": "^1.4.0",
"stylelint": "^14.3.0",
"ts-morph": "14.0.0",
"ts-node": "^10.1.0",
"type-fest": "^2.8.0",
"typescript": "4.5.2"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@sourcegraph/eslint-config": "^0.29.0",
"@sourcegraph/prettierrc": "^3.0.3",
"@sourcegraph/stylelint-config": "^1.4.0",
"@sourcegraph/tsconfig": "^4.0.1",
"@types/css-modules-loader-core": "1.1.4",
"@types/eslint": "7.28.2",
"@types/jest": "27.5.2",
"@types/node": "20.8.10",
"@types/signale": "1.4.7",
"@types/stylelint": "14.0.0",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"jest": "^27.5.1",
"prettier": "^2.4.1",
"semantic-release": "^17.4.4",
"ts-dedent": "^2.2.0",
"ts-jest": "^27.1.2",
"turbo": "^1.2.5"
},
"resolutions": {
"typescript": "4.5.2"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}