-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (35 loc) · 958 Bytes
/
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
{
"name": "@no_one_dev/root",
"private": false,
"scripts": {
"start": "lerna run start",
"dev": "lerna run dev",
"build": "lerna run build",
"canary": "lerna publish --canary",
"version": "lerna version --conventional-commits",
"stable": "lerna publish",
"test": "lerna run test",
"full-stable": "npm run version -- --yes && npm run stable -- from-git --yes"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"lerna": "^8.1.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}