-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.85 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
{
"name": "@blastlauncher/monorepo",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "Yukai Huang",
"main": "index.js",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"watch": "run-p --print-label watch:runtime watch:api watch:utils",
"watch:runtime": "pnpm --filter runtime run watch",
"watch:utils": "pnpm --filter utils run watch",
"watch:api": "pnpm --filter api run watch",
"build": "pnpm --filter @blastlauncher/* run build",
"dev": "pnpm run dev",
"fmt": "prettier --write .",
"lint": "eslint .",
"start:client": "pnpm --filter blast run start",
"test": "pnpm run test",
"cli": "pnpm --filter cli run start"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"preset": "ts-jest",
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/debug": "^4.1.7",
"@types/jest": "^29.2.4",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.47.0",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "2.8.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">8"
}
}