-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
40
41
42
43
44
45
{
"name": "coex-buster",
"version": "1.0.0",
"description": "Main repo",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev ./src/index.ts",
"test": "ts-node-transpile-only src/index.ts",
"build": "tsc",
"start": "node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cala-js/coex-buster.git"
},
"keywords": [],
"author": "Julian Garcia <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cala-js/coex-buster/issues"
},
"homepage": "https://github.com/cala-js/coex-buster#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"prisma": "^4.3.1",
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"@glidejs/glide": "^3.5.2",
"@prisma/client": "^4.3.1",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.2",
"ejs": "^3.1.8",
"express": "^4.18.1",
"glider-js": "^1.7.7",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0"
}
}