-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1005 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
31
32
33
34
35
36
{
"name": "@parloa/invite-service",
"authors": [
{
"name": "Kamyar Paykhan",
"email": "[email protected]"
}
],
"scripts": {
"build": "npx tsc && npx rimraf node_modules && npm install --only=production && cp -R node_modules build/ && cp -R data build/",
"start": "node build/src/main.js",
"lint": "npx eslint src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --config .prettierrc --write --ignore-unknown",
"test:watch": "jest --watch"
},
"dependencies": {
"dotenv": "^16.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "~27.5",
"@types/node": "~16",
"@typescript-eslint/eslint-plugin": "~5.26",
"@typescript-eslint/parser": "~5.26",
"eslint": "~8.16",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "^26.5.3",
"jest": "~28.1",
"prettier": "~2.6",
"rimraf": "~3.0",
"ts-jest": "~28.0",
"ts-node": "^9.1.1",
"typescript": "~4.7"
}
}