This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
forked from OfficeDev/script-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.91 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": "script-lab-react",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "ts-node --project scripts/tsconfig.json scripts/clean.ts",
"build:common": "yarn workspace common build:package",
"postinstall": "yarn clean && yarn postinstall:iterate",
"postinstall:iterate": "yarn workspace common postinstall && yarn workspace editor postinstall && yarn workspace runner postinstall",
"pre-ci": "ts-node --project scripts/tsconfig.json scripts/pre-ci.ts",
"build": "cd packages/editor && yarn build && cd ../server && yarn build",
"prettier": "prettier --list-different \"./**/*.@(ts|tsx|js|jsx|html)\"",
"prettier:write": "prettier --write \"./**/*.@(ts|tsx|js|jsx|html)\"",
"deploy": "jest --config scripts/deploy/jest.config.js && ts-node --project scripts/tsconfig.json scripts/deploy/index.ts",
"common": "yarn workspace common start",
"editor": "yarn workspace editor start",
"runner": "yarn workspace runner start",
"server": "yarn workspace server start",
"start": "npm-run-all --parallel common editor runner server",
"common:test": "yarn workspace common test",
"editor:test": "yarn workspace editor test",
"runner:test": "yarn workspace runner test",
"server:test": "yarn workspace server test",
"test": "npm-run-all --parallel common:test editor:test runner:test server:test",
"tscAll": "ts-node scripts/compile.all.ts",
"generate:github": "ts-node --project scripts/tsconfig.json scripts/generate.github.auth.ts",
"terminate:windows": "taskkill /f /im node.exe"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/inquirer": "^0.0.43",
"@types/md5": "^2.1.33",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.1",
"nodemon": "2.0.7",
"npm-run-all": "^4.1.3",
"prettier": "^1.15.2",
"shelljs": "^0.8.5",
"ts-node": "^7.0.1",
"tslib": "^1.14.1"
}
}