-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "whatsapp-spotify-bot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "tsx watch ./src/shared/infra/http/server.ts",
"start": "NODE_ENV=production node dist/server.js",
"build": "tsup ./src/shared/infra/http/server.ts",
"test": "vitest"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/spotify-web-api-node": "^5.0.7",
"@types/twilio": "^3.19.3",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.7.1",
"tsup": "^6.6.3",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^0.28.5"
},
"dependencies": {
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"reflect-metadata": "^0.1.13",
"spotify-web-api-node": "^5.0.2",
"tsyringe": "^4.7.0",
"twilio": "^4.7.2"
}
}