forked from SimonSiefke/prettier-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.03 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
{
"scripts": {
"postinstall": "lerna bootstrap && tsc -b",
"dev": "tsc -b -w",
"e2e": "cd packages/extension-test && npm run e2e",
"test": "cd packages/service && npm run test",
"clean": "rimraf dist tmp",
"bundle:client": "webpack --mode production --config ./webpack/client.webpack.config.js",
"bundle:server": "webpack --mode production --config ./webpack/server.webpack.config.js",
"bundle:worker": "webpack --mode production --config ./webpack/worker.webpack.config.js",
"package": "npm run clean && npm run bundle:client && npm run bundle:server && npm run bundle:worker && node scripts/package.js && npm run bundlesize",
"publish": "npm run package && cd dist && npx semantic-release",
"prettier": "prettier --config package.json --write \"packages/*/src/**/*.ts\"",
"bundlesize": "bundlesize"
},
"devDependencies": {
"bundlesize": "^0.18.0",
"fs-extra": "^9.0.1",
"lerna": "^3.22.1",
"merge-options": "^3.0.3",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.2.2",
"semantic-release-vsce": "^3.0.1",
"ts-loader": "^8.0.11",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^4.2.0"
},
"renovate": {
"extends": "bitworkers"
},
"bundlesize": [
{
"path": "./dist/packages/extension/dist/extensionMain.js",
"maxSize": "5.0 kB",
"compression": "none"
},
{
"path": "./dist/packages/extension/dist/vscode-dependencies.js",
"maxSize": "190 kB",
"compression": "none"
},
{
"path": "./dist/packages/extension/dist/dependencies.js",
"maxSize": "40 kB",
"compression": "none"
},
{
"path": "./dist/packages/server/dist/serverMain.js",
"maxSize": "11 kB",
"compression": "none"
},
{
"path": "./dist/packages/server/dist/worker.js",
"maxSize": "8 kB",
"compression": "none"
}
],
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true
}
}