-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
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
{
"name": "basic-user-auth-template",
"version": "0.2.0",
"description": "",
"main": "dist/main.js",
"type": "module",
"scripts": {
"start": "bun run src/main.ts",
"build": "npm i",
"dev": "nodemon --watch './' --exec 'bun src/main.ts' -e 'ts ejs json'",
"type-check": "bun run tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notcorefr/basic-user-auth-template.git"
},
"author": "notcorefr",
"license": "MIT",
"bugs": {
"url": "https://github.com/notcorefr/basic-user-auth-template/issues"
},
"homepage": "https://github.com/notcorefr/basic-user-auth-template#readme",
"dependencies": {
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"mongoose": "^8.5.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.5.0",
"nodemon": "^3.1.4"
}
}