-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.95 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
{
"name": "pwc-project",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"setup": "npm run clean && pnpm install --reporter=append-only --registry=https://registry.npmjs.org/ && npm run build",
"clean": "rm -rf node_modules && rm -rf ./**/*/node_modules && npm run clean:result",
"clean:result": "rm -rf ./packages/*/cjs ./packages/*/esm ./packages/*/es2017 ./packages/*/dist",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./",
"lint:fix": "npm run lint -- --fix",
"lint:diff": "esno ./scripts/lint-diff.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --forceExit --ci",
"test:watch": "jest --watch",
"start-bench-server": "ws -c lws.config.js --static.maxage 1 -d ./benchmarks",
"benchmark": "esno ./scripts/benchmarks/index.ts",
"start": "pnpm run start --parallel --filter \"./packages\"",
"build": "pnpm run build -r --filter \"./packages\"",
"prepare-husky": "husky install",
"coverage": "codecov"
},
"dependencies": {
"@applint/spec": "^1.2.0",
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-class-static-block": "^7.17.6",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^13.2.1",
"@swc/core": "^1.2.146",
"@swc/jest": "^0.2.20",
"@types/eslint": "^7.29.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"chalk": "^4.1.2",
"codecov": "^3.8.3",
"esbuild": "^0.14.27",
"eslint": "^7.32.0",
"esno": "^0.14.1",
"execa": "^4.1.0",
"fs-extra": "^10.0.1",
"glob": "^7.2.0",
"gzip-size": "^7.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"local-web-server": "^4.1.0",
"prettier": "^2.6.0",
"stylelint": "^14.6.0",
"typescript": "^4.6.2",
"driver-dom": "^2.2.2",
"rax": "^1.2.2"
}
}