forked from laudspeaker/laudspeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.78 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
{
"name": "laudspeaker",
"version": "0.1.0",
"description": "Open Source Omni-Channel Triggered Messaging",
"main": "index.js",
"workspaces": [
"packages/client",
"packages/server"
],
"scripts": {
"test": "concurrently 'npm run test:client' 'npm run test:server'",
"test:client": "npm run test -w packages/client",
"test:server": "npm run test -w packages/server",
"test:e2e": "concurrently 'npm run test:client' 'npm run test:server'",
"test:e2e:client": "npm run test:e2e -w packages/client",
"test:e2e:server": "npm run test -w packages/server",
"lint": "concurrently 'npm run lint:client' 'npm run lint:server'",
"lint:client": "npm run lint -w packages/client",
"lint:server": "npm run lint -w packages/server",
"lint:fix": "concurrently 'npm run lint:fix:client' 'npm run lint:fix:server'",
"lint:fix:client": "npm run lint:fix -w packages/client",
"lint:fix:server": "npm run lint:fix -w packages/server",
"format": "concurrently 'npm run format:client' 'npm run format:server'",
"format:client": "npm run format -w packages/client",
"format:server": "npm run format -w packages/server",
"build": "concurrently 'npm run build:client' 'npm run build:server'",
"build:client": "npm run build:prod -w packages/client",
"build:server": "npm run build -w packages/server",
"start": "concurrently 'npm run start:client' 'npm run start:server'",
"start:client": "npm run start -w packages/client",
"start:client:ci": "npm run start:ci -w packages/client",
"start:server": "npm run start:dev -w packages/server",
"migrations": "npm run typeorm:run -w packages/server"
},
"author": "",
"license": "MIT",
"dependencies": {
"concurrently": "^7.4.0",
"logform": "^2.4.2",
"luxon": "^3.2.1"
}
}