-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.59 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
{
"private": true,
"name": "mona-monorepo",
"version": "0.0.1",
"description": "mona",
"main": "",
"scripts": {
"build": "lerna run build",
"b": "node ./build",
"s": "node ./build -s",
"clean": "lerna run clean",
"clean:dp": "lerna clean -y && rm -rf node_modules",
"clean:all": "yarn clean && yarn clean:dp",
"bootstrap": "lerna bootstrap",
"test": "jest",
"test:coverage": "jest --coverage",
"test:c": "jest --coverage",
"release": "node ./scripts/release.js",
"bnpm:sync": "node ./scripts/bnpmSync.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bytedance/mona"
},
"author": "[email protected]",
"license": "MIT",
"workspaces": [
"packages/mona*",
"packages/mona-clients/*",
"packages/mona-manager-plugins/*",
"packages/mona-manager-plugins/mona-service-targets/*"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@types/enzyme": "^3.10.10",
"@types/jest": "^27.0.2",
"@types/react-test-renderer": "^17.0.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"canvas": "^2.8.0",
"chalk": "4.1.2",
"enzyme": "^3.11.0",
"execa": "5.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-dom": "^4.0.0",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"ora": "5.4.1",
"react-test-renderer": "^17.0.0",
"semver": "^7.3.5",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"concurrently": "^7.6.0",
"typescript": "^4.4.4"
}
}