-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.86 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
{
"name": "vscode-framework",
"private": true,
"scripts": {
"start": "node scripts/prepare.mjs && tsc-watch -b tsconfig.dev.json --onSuccess \"node scripts/postBuild.mjs\"",
"eslint": "eslint packages/*/src/**/*.ts",
"test": "jest",
"test-integration": "jest integration-tests/index.test.ts",
"build": "node scripts/prepare.mjs && tsc -b tsconfig.prod.json && tsc -p tsconfig.only-typechecking.json && node scripts/postBuild.mjs"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@changesets/cli": "^2.18.0",
"@octokit/rest": "^18.12.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@zardoy/tsconfig": "^1.2.2",
"concurrently": "^6.4.0",
"del": "^6.0.0",
"delay": "^5.0.0",
"esbuild": "^0.13.14",
"esbuild-runner": "^2.2.1",
"eslint": "^7.32.0",
"eslint-plugin-zardoy-config": "^0.1.3",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"github-remote-info": "^1.0.3",
"gitly": "^2.1.5",
"globby": "^11.0.4",
"got": "^11.8.2",
"jest": "^27.3.1",
"jsonfile": "^6.1.0",
"lodash-es": "^4.17.21",
"modify-json-file": "^1.2.1",
"pinst": "^2.1.6",
"prettier": "^2.4.1",
"quicktype-core": "^6.0.70",
"ts-node": "^10.4.0",
"tsc-watch": "^4.5.0",
"type-fest": "^2.5.3",
"typed-jsonfile": "^0.2.0",
"typescript": "^4.4.4"
},
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "never",
"tabWidth": 4,
"trailingComma": "all",
"arrowParens": "avoid",
"printWidth": 120
}
}