-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "react-creates-workspace",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build:packages": "tsc --build",
"build:vscode": "npm run build -w react-creates-vsc",
"build": "npm-run-all build:*",
"publish:vscode": "node -r @ts-tools/node/r scripts/publish-vscode.ts",
"clean": "rimraf ./packages/*/dist ./packages/*/templates",
"lint": "eslint .",
"pretest": "npm run build",
"test:packages": "mocha \"packages/**/dist/test/**/*.test.js\" --parallel",
"test": "npm-run-all test:*",
"watch:packages": "npm run build:packages -- -w --preserveWatchOutput",
"watch:vscode": "npm run watch -w react-creates-vsc",
"watch": "run-p watch:*"
},
"author": {
"email": "[email protected]",
"name": "tzachbon",
"url": "https://github.com/tzachbon"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"devDependencies": {
"@ts-tools/node": "^4.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/rimraf": "^3.0.2",
"@types/vscode": "^1.71.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"expect": "^29.1.2",
"glob": "^8.0.3",
"jest-util": "^29.1.2",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"path-browserify": "^1.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.4",
"util": "^0.12.4",
"vsce": "^2.11.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}