forked from Sofie-Automation/sofie-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.64 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.64 KB
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
{
"name": "automation-core",
"version": "0.0.0",
"license": "MIT",
"private": true,
"engines": {
"node": "^14.18 || ^16.14"
},
"scripts": {
"postinstall": "yarn install:packages && yarn 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 && yarn install",
"start": "yarn install && yarn dev",
"dev": "node ./scripts/run.js",
"build:packages": "cd packages && yarn build",
"test:packages": "cd packages && yarn test",
"lint:packages": "cd packages && yarn lint",
"check-types:meteor": "cd meteor && yarn check-types",
"test:meteor": "cd meteor && yarn test",
"lint:meteor": "cd meteor && yarn lint",
"meteor:run": "cd meteor && meteor yarn start",
"lint": "yarn lint:meteor && yarn lint:packages",
"validate:release": "yarn install && yarn build:packages && yarn validate:release:packages && yarn 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 && yarn validate:dependencies && yarn test",
"meteor": "cd meteor && meteor",
"docs:serve": "cd packages && yarn docs:serve",
"reset": "meteor node scripts/reset.js",
"test-all": "yarn install && yarn build:packages && yarn check-types:meteor && yarn lint:packages && yarn lint:meteor && yarn test:packages && yarn test:meteor"
},
"devDependencies": {
"concurrently": "^6.4.0",
"snyk-nodejs-lockfile-parser": "^1.38.0",
"rimraf": "^3.0.2",
"semver": "^7.3.5"
}
}