-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.75 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
46
47
48
49
50
51
52
53
54
55
{
"name": "drp",
"version": "1.0.0",
"description": "Web application that allows its users to find solutions to PC problems.",
"private": true,
"scripts": {
"deploy:setup": "pm2 deploy pm2/ecosystem.config.js production setup",
"deploy": "pm2 deploy pm2/ecosystem.config.js production",
"pm2:kill": "pm2 kill",
"pm2:monit": "pm2 monit",
"pm2:list": "pm2 list",
"bootstrap": "lerna bootstrap --ignore-prepublish --force-local --hoist=*",
"test": "lerna run test --stream --concurrency 1",
"audit": "lerna run audit --stream",
"check-updates": "lerna run check-updates --stream",
"check-updates:upgrade": "lerna run check-updates:upgrade --stream",
"start:backend": "cp ./.env www/server/ && lerna run start --scope server --stream",
"dev:backend": "cp ./.env www/server/ && lerna run dev --scope server --stream",
"dev:frontend": "cp ./.env client/react-front && lerna run dev --scope react-front --stream",
"build:frontend": "cp ./.env client/react-front && lerna run build --scope react-front --stream"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/koalex/drp.git"
},
"bugs": {
"url": "https://github.com/koalex/drp/issues"
},
"contributors": [
{
"name": "Konstantin Aleksandrov",
"email": "alexandrovkm@gmail.com",
"url": "https://github.com/koalex"
}
],
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/koalex/drp#readme",
"engines": {
"node": ">=10.10.0",
"npm": ">=6"
},
"devDependencies": {
"dotenv": "^8.0.0",
"husky": "^2.4.1",
"lerna": "^3.14.1",
"pm2": "^3.5.1"
},
"dependencies": {}
}