-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 797 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 797 Bytes
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
{
"name": "sequelize",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon --exec ts-node --files src/index.ts watch src",
"start": "node build/index.js",
"prebuild": "rm -rf build",
"build": "tsc"
},
"dependencies": {
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mariadb": "^2.4.2",
"moment-timezone": "^0.5.31",
"sequelize": "^5.22.3",
"sequelize-typescript": "^1.1.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.32",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/node": "^14.6.0",
"@types/validator": "^13.1.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}