-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 897 Bytes
/
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
{
"name": "justexp",
"packageManager": "yarn@4.1.1",
"type": "module",
"scripts": {
"dev": "dotenvx run -- nodemon src/*.js --recursive",
"sdk": "yarn dlx @yarnpkg/sdks vscode",
"start": "dotenvx run -- node src/index.js",
"test": "jest"
},
"nodemonConfig": {
"delay": 1000,
"ignore": [
"*.test.js"
],
"env": {}
},
"dependencies": {
"@dotenvx/dotenvx": "^0.37.1",
"cookie-parser": "^1.4.6",
"debug": "^4.3.4",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-asyncify": "^2.1.3",
"express-session": "^1.18.0",
"helmet": "^7.1.0",
"joi": "^17.13.1",
"mongoose": "^8.3.3",
"morgan": "^1.10.0",
"nunjucks": "^3.2.4",
"paseto": "^3.1.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"nodemon": "^3.1.0",
"typescript": "^5.4.5"
}
}