-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
35 lines (35 loc) · 1003 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
{
"name": "root",
"private": true,
"scripts": {
"alias": "alias meeco=\"node --inspect --require tsconfig-paths/register ./packages/cli/bin/run\"",
"bootstrap": "lerna bootstrap --hoist --nohoist=mithril --nohoist=@types/mithril",
"build": "lerna run build",
"docs": "lerna run docs",
"postinstall": "ts-node scripts/check-node-and-npm-versions.ts && npm run bootstrap",
"alpha": "ts-node scripts/tag-packages.ts alpha",
"beta": "ts-node scripts/tag-packages.ts beta",
"test": "lerna run test",
"pretest": "ts-node scripts/check-packages.ts"
},
"devDependencies": {
"@types/node": "^16.18.82",
"chalk": "^4.1.2",
"cypress": "^4.5.0",
"lerna": "^5.1.6",
"semver": "^7.6.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.15.1",
"npm": ">=8.0.0"
},
"overrides": {
"fancy-test": {
"nock": "14.0.0-beta.9"
},
"nock": "14.0.0-beta.9"
}
}