-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "foinni-backend",
"version": "2.1.0",
"main": "build/index.js",
"scripts": {
"start": "npx tsnd --respawn --files ./index.ts",
"start:prod": "chmod a+x ./build/index.js && node ./build/index.js --prod",
"build": "rimraf ./build && tsc",
"heroku-postbuild": "npm run build && rimraf ./src ./index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Useyourillusions",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"express-ws": "^5.0.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.4.1",
"mongoose": "^6.2.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.16.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/express-ws": "^3.0.1",
"@types/node": "^17.0.23",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
},
"engines": {
"node": "17.6.0",
"npm": "8.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/useyourillusions/foinni-backend.git"
},
"bugs": {
"url": "https://github.com/useyourillusions/foinni-backend/issues"
},
"homepage": "https://github.com/useyourillusions/foinni-backend#readme",
"description": ""
}