-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "abmt",
"private": true,
"license": "MIT",
"version": "0.0.1",
"description": "A Better Migration Tool",
"repository": "https://github.com/mosano/abmt",
"author": "Mosano Dev Team <[email protected]>",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"dev": "lerna exec --parallel --stream -- yarn dev",
"build": "lerna run build",
"lint": "lerna run lint",
"test": "lerna run test",
"publish": "lerna run build && lerna publish"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-replace": "^5.0.4",
"@rollup/plugin-swc": "^0.2.1",
"@rollup/plugin-terser": "^0.4.4",
"@swc/core": "^1.3.93",
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lerna": "^7.4.1",
"lint-staged": "^15.0.1",
"nx": "^16.10.0",
"prettier": "^3.0.3",
"rollup": "^4.1.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-swc3": "^0.10.2",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}