-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.54 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
67
68
69
70
{
"name": "mini_faas_worker",
"version": "0.0.1",
"description": "a mini faas worker base on V8",
"main": "index.js",
"scripts": {
"dev": "turbo run dev",
"start": "turbo run start",
"start:prod": "concurrently -n gateway,serverless,website \"pnpm --filter @mini_faas_worker/gateway start\" \"pnpm --filter @mini_faas_worker/serverless start\" \"pnpm --filter @mini_faas_worker/website start\"",
"test": "vitest run",
"test:update": "pnpm test -- -u",
"test:watch": "vitest",
"preinstall": "npx only-allow pnpm",
"postinstall": "husky install",
"clean": "rm -rf node_modules && rm -rf ./packages/*/node_modules && rm -rf ./packages/*/dist && rm -rf ./packages/*/.turbo && rm -rf ./packages/*/.next",
"build": "turbo run build --continue",
"commit": "cz",
"commitlint": "commitlint",
"lint:ts": "pnpm -r exec tsc --project ./tsconfig.json --noEmit",
"lint-staged": "lint-staged",
"init:front_end": "cd devtools && rm -rf devtools-frontend && gclient sync --with_branch_heads --verbose",
"dev:front_end": "cd devtools/devtools-frontend && gn gen out/Default --args=\"is_debug=true\" && autoninja -C out/Default && gulp copy:devtools:dev",
"build:front_end": "cd devtools/devtools-frontend && gn gen out/Default --args=\"is_debug=false\" && autoninja -C out/Default && gulp copy:devtools:release"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7.3.0"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"commitizen": "^4.2.4",
"concurrently": "^7.5.0",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.14.41",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"git-cz": "^4.7.6",
"glob": "^9.3.0",
"gulp": "^4.0.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"node-watch": "^0.7.3",
"nodemon": "^2.0.20",
"prettier": "^2.6.2",
"turbo": "^1.5.3",
"typescript": "^4.6.4",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.15.1",
"xml2js": "^0.4.23"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.0",
"cross-env": "^7.0.3",
"rimraf": "^4.1.2"
}
}