-
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) · 834 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 834 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": "mainapi",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"init-db": "node scripts/init-db.js",
"init-db-sequelize": "node scripts/init-db-sequelize.js",
"wipe-db": "node scripts/wipe-and-recreate-db.js",
"init-db-bash": "bash scripts/init-db.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"node-cron": "^4.2.1",
"node-fetch": "^2.7.0",
"sequelize": "^6.37.7",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}