-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 878 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
{
"dependencies": {
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"playwright": "^1.28.1",
"twilio": "^3.83.4"
},
"main": "dist/app.js",
"type": "module",
"scripts": {
"prebuild": "eslint . --ext .ts",
"build": "tsc",
"prestart": "npm run build",
"start": "tsc-watch --onSuccess \"node --inspect=9224 .\" --noClear",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/lodash": "^4.14.177",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"tsc-watch": "^4.2.9",
"typescript": "^4.2.3"
}
}