This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.23 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
{
"name": "ts-project-generator",
"private": true,
"type": "module",
"files": [],
"workspaces": {
"packages": [
"./packages/*"
]
},
"scripts": {
"build": "npm run copy-files && npm run compile",
"gulp": "cross-env NODE_OPTIONS=\"--loader ts-node/esm\" gulp",
"copy-files": "npm run gulp -- CopyFiles",
"compile": "cd packages/generator-ts-project && npm run build",
"rebuild": "npm run clean && npm run build",
"watch": "concurrently --raw \"npm run copy-files -- --watch | shusher\" \"cd packages/generator-ts-project && npm run watch\"",
"clean": "cd packages/generator-ts-project && npm run clean",
"lint-local": "eslint --max-warnings 0 ./scripts .eslintrc.cjs gulpfile.ts ./gulp",
"lint-local-ide": "npm run lint-local || exit 0",
"lint": "npm run lint-local && npm run --workspaces lint",
"lint-ide": "npm run lint-local-ide && npm run --workspaces lint-ide",
"test": "npm run --workspaces test",
"version": "ts-node-esm ./scripts/bumpVersion.ts",
"prepare": "npm run copy-files && cd packages/generator-ts-project && npm run initialize"
},
"devDependencies": {
"@manuth/eslint-plugin-typescript": "^4.0.0",
"@manuth/package-json-editor": "^3.0.2",
"@types/diff": "^5.0.2",
"@types/fs-extra": "^9.0.13",
"@types/git-branch": "^2.0.2",
"@types/glob": "^8.0.0",
"@types/gulp": "^4.0.9",
"@types/gulp-rename": "^2.0.1",
"@types/merge-stream": "^1.1.2",
"@types/minimist": "^1.2.2",
"@types/node": "^18.7.18",
"@types/npm-which": "^3.0.1",
"@types/through2": "^2.0.36",
"@types/vinyl": "^2.0.6",
"concurrently": "^7.4.0",
"copy-and-watch": "^0.1.6",
"cross-env": "^7.0.3",
"diff": "^5.1.0",
"eslint": "^8.23.1",
"fs-extra": "^10.1.0",
"git-branch": "^2.0.1",
"glob": "^8.0.3",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"merge-stream": "^2.0.0",
"minimist": "^1.2.6",
"mocha": "^10.0.0",
"npm-run-path": "^5.1.0",
"npm-which": "^3.0.1",
"shusher": "^0.1.1",
"source-map-support": "^0.5.21",
"through2": "^4.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"upath": "^2.0.1",
"vinyl": "^2.2.1",
"yo": "^4.3.0"
}
}