-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
32 lines (32 loc) · 1.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
{
"scripts": {
"postinstall": "lerna bootstrap && tsc -b",
"dev": "tsc -b -w",
"e2e": "cd packages/extension-test && npm run e2e",
"clean": "rimraf dist",
"bundle:client": "webpack --mode production --config ./webpack/client.webpack.config.js",
"bundle:server": "webpack --mode production --config ./webpack/server.webpack.config.js",
"package": "npm run clean && npm run bundle:client && npm run bundle:server && node scripts/package.js && cd dist && vsce package",
"publish": "npm run clean && npm run bundle:client && npm run bundle:server && node scripts/package.js && cd dist && vsce publish",
"prettier": "prettier --write \"packages/*/src/**/*.ts\"",
"benchmark": "nodemon --watch packages/**/*.js --exec \"node packages/service/dist/benchmark/doAutoRenameTagBenchmark.js\""
},
"devDependencies": {
"fs-extra": "^10.0.1",
"lerna": "^4.0.0",
"merge-options": "^3.0.4",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
}
}