-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 869 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
{
"name": "email_server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"workspaces": ["api","client"],
"scripts": {
"lint": "eslint --init",
"test:api": "NODE_ENV=test mocha -r ts-node/register api/src/**/*.test.ts --timeout 20000 --exit",
"test:client:watchAll": "jest --watchAll",
"build:client": "cd client && rm -rf dist && webpack --mode production",
"build:api": "cd api && rm -rf dist && tsc",
"build": "yarn run build:api && yarn run build:client",
"start:client": "cd client && yarn run start",
"start:api": "cd api && yarn run start",
"start": "yarn run start:api && yarn run start:client"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {},
"husky": {
"hooks": {
"pre-push": "pretty-quick --staged"
}
}
}