forked from hypermod-io/hypermod-community
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.75 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.75 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
{
"name": "codeshift-community",
"version": "0.1.0",
"description": "Codemods for everyone",
"repository": "https://github.com/CodeshiftCommunity/CodeshiftCommunity",
"author": "Daniel Del Core <daniel.delcore.92@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"predocs:start": "ts-node scripts/docs",
"docs:start": "cd website && yarn start",
"postinstall": "preconstruct dev && yarn monorepo:check",
"build": "yarn clean && preconstruct build",
"clean": "rm -rf node_modules/.cache && rimraf packages/**/{tsconfig.tsbuildinfo,lib,dist} community/**/{tsconfig.tsbuildinfo,lib,dist}",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"validate": "yarn build && yarn lint && yarn monorepo:check && preconstruct validate",
"lint": "yarn eslint --config .eslintrc.js --ext tsx,ts ./packages/**/src ./community/**/*",
"lint:fix": "yarn lint -- --fix",
"lint:file-structure": "npx @ls-lint/ls-lint",
"types:check": "tsc --noEmit --skipLibCheck",
"monorepo:check": "manypkg check",
"monorepo:fix": "manypkg fix && preconstruct fix",
"start:codemods": "node packages/cli/bin/codeshift-cli.js",
"init:codemods": "ts-node scripts/initialize.ts",
"validate:codemods": "ts-node scripts/validate.ts ./community",
"release:codemods": "ts-node scripts/publish.ts ./community .tmp",
"release-all:codemods": "ts-node scripts/publish-all.ts ./community .tmp",
"release-all-dry:codemods": "ts-node scripts/publish-all-dry.ts ./community .tmp",
"prerelease": "yarn validate && yarn test",
"release": "yarn changeset publish"
},
"dependencies": {
"@babel/core": "^7.12.7",
"@babel/parser": "^7.12.10",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@changesets/cli": "^2.6.2",
"@manypkg/cli": "^0.11.1",
"@preconstruct/cli": "^2.0.0",
"@types/jest": "^26.0.15",
"@types/jscodeshift": "^0.11.2",
"@types/tar": "^4.0.4",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"babel-loader": "^8.0.6",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"fs-extra": "^9.1.0",
"jest": "^26.6.0",
"jest-serializer-html-string": "^1.0.1",
"jest-watch-typeahead": "^0.4.2",
"jscodeshift": "^0.13.1",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"semver": "^7.3.5",
"tar": "^6.1.0",
"ts-jest": "^26.4.4",
"ts-loader": "^6.2.1",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"typescript": "^4.3.5"
},
"resolutions": {
"colors": "1.4.0"
},
"workspaces": [
"packages/*",
"community/*"
],
"preconstruct": {
"packages": [
"packages/*"
]
}
}