-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 849 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 849 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
33
{
"name": "ProjectLoLoStories",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx nodemon .",
"dev": "env DELAY=1000 npx nodemon .",
"initdev": "npm run migrate && npm run seed",
"migrate": "npx sequelize-cli db:migrate",
"seed": "npx sequelize-cli db:seed:all",
"resetDB": "npx sequelize-cli db:migrate:undo:all && npm run initdev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"exceljs": "^4.2.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"pg": "^8.5.0",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"xlsx": "^0.16.8"
},
"devDependencies": {
"nodemon": "^2.0.6"
}
}