-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
46
47
48
{
"name": "open-music-api-submission",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"start-prod": "NODE_ENV=production NODE_PATH=./ ts-node src/index.ts",
"start-dev": "nodemon",
"lint": "eslint . --ext .ts",
"migrate": "ts-node ./node_modules/node-pg-migrate/bin/node-pg-migrate -j ts"
},
"dependencies": {
"@hapi/hapi": "^20.1.5",
"@hapi/inert": "^6.0.3",
"@hapi/jwt": "^2.0.1",
"@types/amqplib": "^0.8.2",
"@types/aws-sdk": "^2.7.0",
"@types/bcrypt": "^5.0.0",
"@types/hapi__hapi": "^20.0.9",
"@types/hapi__inert": "^5.2.3",
"@types/hapi__jwt": "^2.0.1",
"@types/joi": "^17.2.3",
"@types/pg": "^8.6.1",
"@types/redis": "^2.8.31",
"amqplib": "^0.8.0",
"auto-bind": "^4.0.0",
"aws-sdk": "^2.973.0",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"joi": "^17.4.2",
"nanoid": "^3.1.23",
"node-pg-migrate": "^5.10.0",
"pg": "^8.7.1",
"redis": "^3.1.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"nodemon": "^2.0.12"
}
}