-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
44 lines (44 loc) · 2.05 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
{
"name": "automation-core",
"version": "0.0.0",
"license": "MIT",
"private": true,
"engines": {
"node": "^14.19 || ^16.14 || ^18.12"
},
"scripts": {
"postinstall": "run install:packages && run install:meteor",
"install:meteor": "cd meteor && meteor --version && meteor npm install -g yarn && node ../scripts/fix-windows-yarn.js && meteor yarn install",
"install:packages": "cd packages && (node is_node_14.js && yarn lerna run --ignore openapi install || yarn install)",
"start": "yarn install && run install-and-build && run dev",
"install-and-build": "node ./scripts/install-and-build.mjs",
"dev": "node ./scripts/run.mjs",
"restart:meteor": "node ./scripts/meteor-force-restart.js",
"build:packages": "cd packages && run build",
"test:packages": "cd packages && run test",
"lint:packages": "cd packages && run lint",
"unit:packages": "cd packages && run unit",
"check-types:meteor": "cd meteor && run check-types",
"test:meteor": "cd meteor && run test",
"lint:meteor": "cd meteor && meteor yarn lint",
"unit:meteor": "cd meteor && meteor yarn unit",
"meteor:run": "cd meteor && meteor yarn start",
"lint": "run lint:meteor && run lint:packages",
"unit": "run unit:meteor && run unit:packages",
"validate:release": "yarn install && run install-and-build && run validate:release:packages && run validate:release:meteor",
"validate:release:meteor": "cd meteor && meteor yarn validate:prod-dependencies && meteor yarn license-validate && meteor yarn lint && meteor yarn test",
"validate:release:packages": "cd packages && run validate:dependencies && run test",
"meteor": "cd meteor && meteor",
"docs:serve": "cd packages && run docs:serve",
"reset": "node scripts/reset.mjs",
"test-all": "yarn install && run install-and-build && run check-types:meteor && run lint:packages && run lint:meteor && run test:packages && run test:meteor"
},
"devDependencies": {
"concurrently": "^8.2.2",
"lint-staged": "^13.3.0",
"rimraf": "^5.0.5",
"semver": "^7.5.4",
"snyk-nodejs-lockfile-parser": "^1.52.11"
},
"packageManager": "yarn@3.5.0"
}