forked from thetaungg/nodejs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 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
52
53
54
55
56
57
58
59
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' -r tsconfig-paths/register src/index.ts",
"start": "npm run build && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./dist && tsc && tsc-alias"
},
"author": "Thet Aung",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^16.11.6",
"@types/nodemailer": "^6.4.4",
"@types/validator": "^13.7.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"rimraf": "^5.0.5",
"ts-node": "^10.4.0",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@types/morgan": "^1.9.3",
"app-root-path": "^3.0.0",
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"fs": "^0.0.1-security",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"helmet": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"libphonenumber-js": "^1.10.54",
"mongoose": "^6.4.2",
"morgan": "^1.10.0",
"nodemailer": "^6.7.6",
"path": "^0.12.7",
"twilio": "^4.20.1",
"validator": "^13.7.0",
"winston": "^3.8.1"
}
}