forked from hicsail/intern-assessment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (38 loc) · 1.11 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
{
"name": "intern-assessment",
"version": "1.0.0",
"description": "This is a simple tool designed to help users manage their tasks efficiently. Built with Node.js and Express, it supports CRUD operations allowing users to create, read, update, and delete tasks. This document provides setup instructions, usage guidelines, and contribution information.",
"main": "index.js",
"scripts": {
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hicsail/intern-assessment.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/hicsail/intern-assessment/issues"
},
"homepage": "https://github.com/hicsail/intern-assessment#readme",
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"express": "^4.19.2",
"sequelize": "^6.37.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"chai": "^5.1.0",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"supertest": "^6.3.4"
},
"keywords": [],
"scripts": {
"start": "node app.js",
"test": "mocha --timeout 10000"
}
}