-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.88 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
46
47
48
49
50
51
{
"name": "pwm_backend",
"version": "1.0.0",
"description": "PWM is a simple password manager website that encrypts locally yours credentials and syncs them across all your devices.",
"type": "module",
"exports": "./build/server.js",
"scripts": {
"serve:debug": "cross-env NODE_ENV=development NODE_NO_WARNINGS=1 nodemon --inspect-brk ./src/server.ts",
"serve:dev": "cross-env NODE_ENV=development NODE_NO_WARNINGS=1 nodemon ./src/server.ts",
"preserve:prod": "tsc --project ./tsconfig.prod.json",
"serve:prod": "cross-env NODE_ENV=production node --experimental-specifier-resolution=node ./build/server.js"
},
"contributors": [
"lukaarma <[email protected]> (https://github.com/lukaarma)",
"Lorenzo Romio <[email protected]> (https://github.com/lorenzoromio)"
],
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.2.220",
"@types/bcrypt": "^5.0.0",
"@types/connect-history-api-fallback": "^1.3.5",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^18.6.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"chalk": "^5.0.1",
"connect-history-api-fallback": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": ">=5.0.0-beta.1",
"helmet": "^6.0.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.0",
"morgan": "^1.10.0",
"uuid": "^8.3.2",
"winston": "^3.8.1"
}
}