forked from phantom603/online-store-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 801 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
26
27
28
29
30
{
"name": "online-store-backend",
"version": "1.0.0",
"description": "",
"main": "run.js",
"scripts": {
"start": "pm2 start ecosystem.config.js",
"stop": "pm2 stop ecosystem.config.js",
"test": "jest",
"test:coverage": "npm test -- --coverage",
"build": "zx ./build.mjs",
"postinstall": "zx ./post-install.mjs",
"deploy": "rsync -vzrl --no-perms --no-owner --no-group --delete build/ root@online-editor-client:/var/www/shop.bootcamp.place/server/"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"zx": "^7.2.3"
},
"dependencies": {
"pm2": "^5.3.1"
}
}