-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.16 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.16 KB
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
{
"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": {
"test": "jest",
"release": "semantic-release",
"format": "prettier '**/*.{js?(on),ts?(x),scss,md,yml}' --write --list-different --ignore-path ./.prettierignore",
"format:check": "yarn format --write=false",
"lint": "eslint .",
"build": "tsc --build",
"build:clean": "tsc --build --clean && rimraf ./packages/*/dist ./packages/*/*.tsbuildinfo",
"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.11.1",
"camelcase": "^6.2.0",
"commander": "^8.3.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": "^13.13.1",
"ts-morph": "13.0.1",
"ts-node": "^10.1.0",
"type-fest": "^2.8.0",
"typescript": "4.5.2"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@sourcegraph/eslint-config": "^0.25.1",
"@sourcegraph/prettierrc": "^3.0.3",
"@sourcegraph/stylelint-config": "^1.3.0",
"@sourcegraph/tsconfig": "^4.0.1",
"@types/css-modules-loader-core": "1.1.0",
"@types/eslint": "7.28.2",
"@types/jest": "27.0.2",
"@types/node": "16.11.6",
"@types/signale": "1.4.2",
"@types/stylelint": "13.13.3",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.4.1",
"semantic-release": "^17.4.4",
"ts-jest": "^27.1.2"
},
"resolutions": {
"typescript": "4.5.2"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}