-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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": "personal-api-mysql",
"version": "1.0.0",
"description": "My API for personal project with mysql",
"main": "source/index.ts",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon source/index.ts",
"build": "rm -rf dist/ && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartoryu/playground-personal-api-mysql.git"
},
"author": "prikenang",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartoryu/playground-personal-api-mysql/issues"
},
"homepage": "https://github.com/smartoryu/playground-personal-api-mysql#readme",
"dependencies": {
"@notionhq/client": "^1.0.4",
"bcrypt": "^5.0.1",
"colors": "^1.4.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"mysql2": "^2.3.3",
"node-cron": "^3.0.0",
"sequelize": "^6.17.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.22",
"@types/node-cron": "^3.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}