-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 960 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 960 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
34
35
36
37
38
39
{
"name": "smarttodo",
"version": "0.0.1",
"description": "A simple yet smart to-do list for teams",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "nodemon src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yousshim/SmartTodo.git"
},
"author": "Yousef Ibrahim",
"license": "MIT",
"bugs": {
"url": "https://github.com/yousshim/SmartTodo/issues"
},
"homepage": "https://github.com/yousshim/SmartTodo#readme",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^26.0.15",
"fast-check": "^2.6.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@types/express": "^4.17.8",
"@types/mongoose": "^5.10.0",
"@types/uuid": "^8.3.0",
"express": "^4.17.1",
"mongoose": "^5.10.13",
"uuid": "^8.3.1"
}
}