-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 908 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 908 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
{
"name": "taskr-backend",
"version": "1.0.0",
"description": "backend for taskr",
"main": "src/index.js",
"repository": "https://github.com/taskr-org/node-backend",
"author": "alok8bb",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.0",
"drytypes": "^0.4.9",
"google-auth-library": "^7.14.1",
"hyougen": "^0.5.3",
"koa": "^2.13.4",
"mongoose": "^6.2.10",
"showdown": "^2.0.3",
"ts-node": "^10.7.0",
"uuid": "^8.3.2"
},
"scripts": {
"start": "node public/src/index.js",
"build": "tsc",
"postinstall": "yarn run build",
"dev": "ts-node-dev --respawn src/index.ts"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/koa": "^2.13.4",
"@types/node": "^17.0.23",
"@types/showdown": "^1.9.4",
"@types/uuid": "^8.3.4",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
}
}