-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1021 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1021 Bytes
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
{
"name": "emojitacktoeserver",
"version": "1.0.0",
"description": "",
"main": "./dist/server.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node ./dist/server.js",
"devMain": "nodemon ./src/serverMain.ts",
"devAuth": "nodemon ./src/serverAuth.ts"
},
"author": "Dennis Aleksandrov",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/jsonwebtoken": "^8.3.9",
"@types/mongoose": "^5.7.14",
"@types/node": "^13.13.4",
"bcrypt": "^4.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.11",
"nodemon": "^2.0.3",
"npm": "^6.14.4",
"password-validator": "^5.0.3"
},
"devDependencies": {
"tslint": "^6.1.2",
"typescript": "^3.8.3"
}
}