-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"name": "curhatan",
"version": "1.0.0",
"description": "Simple chat service with auth and persistence",
"main": "dist/server.js",
"author": "sayyidyofa@gmail.com",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.14.7",
"@types/temp": "^0.8.34",
"nodemon": "^2.0.4",
"typescript": "^4.0.3"
},
"scripts": {
"check-types": "tsc",
"start": "node dist/server.js",
"build": "babel ./src --out-dir dist --extensions '.ts' --source-maps inline",
"dev": "nodemon"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.2"
}
}