-
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) · 1.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 KB
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": "ensta-in211-web-backend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "dotenv -- nodemon --experimental-modules ./server.js",
"start": "dotenv -- node --experimental-modules ./server.js",
"lint": "eslint . --fix",
"migration:generate": "dotenv -- typeorm --dataSource='./datasource.js' migration:generate --outputJs --pretty migrations/$npm_config_name",
"postmigration:generate": "./postmigration.sh",
"migration:run": "dotenv -- typeorm --dataSource='./datasource.js' migration:run",
"migration:revert": "dotenv -- typeorm --dataSource='./datasource.js' migration:revert"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv-cli": "^7.4.1",
"express": "^4.18.3",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"typeorm": "^0.3.20"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.0",
"prettier": "^3.2.5"
}
}