-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 867 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
{
"name": "elodin",
"version": "1.0.0",
"private": true,
"workspaces": [
"app/**/*"
],
"scripts": {
"helloworld:build": "yarn workspace hello-world build",
"helloworld:start:dev": "yarn workspace hello-world start:dev",
"build": "concurrently \"yarn:*:build\"",
"start:dev": "concurrently --kill-others-on-fail \"yarn:*:start:dev\"",
"test": "ts-mocha --paths -p tests/tsconfig.json tests/**/*.test.ts",
"azure:provision": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./tools/azure/provision-azure-resources.ps1"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"concurrently": "^5.2.0",
"mocha": "^8.2.0",
"ts-mocha": "^7.0.0",
"typescript": "^4.0.0"
}
}