-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·39 lines (39 loc) · 1.3 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
{
"name": "@project/passportjs-azure-ad",
"version": "1.0.0",
"description": "Here an example project with Passport.js and Ts.ED framework.",
"main": "index.js",
"author": "",
"license": "ISC",
"private": true,
"scripts": {
"test": "lerna run test --stream",
"test:e2e": "lerna run test:e2e",
"test:client": "lerna run test --scope=@project/client",
"test:server": "lerna run test --scope=@project/server",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"build": "lerna run build --stream",
"build:client": "lerna run build --scope=@project/client --stream",
"build:server": "lerna run build --scope=@project/server --stream",
"start": "lerna run start --stream --parallel",
"start:client": "lerna run start --scope=@project/client --stream",
"start:server": "lerna run start --scope=@project/server --stream",
"start:prod": "cross-env NODE_ENV=production pm2-docker --raw processes.config.js --no-deamon",
"docker:build": "yarn build && docker-compose build",
"prepare": "is-ci || husky install"
},
"dependencies": {
"lerna": "7.1.5",
"pm2": "5.3.0"
},
"devDependencies": {
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2"
},
"workspaces": [
"packages/*"
]
}