-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"create-bundle": "tsc && node dist/index.js",
"start": "node dist/index.js",
"format": "prettier --write \"**/*.{ts,tsx,js,scss}\" && npm run lint:fix",
"format-check": "prettier --check \"**/*.{ts,tsx,js,scss}\"",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"author": "Atul Singh",
"license": "ISC",
"dependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.28",
"@types/request": "^2.48.5",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.20",
"popups": "^1.1.3"
},
"devDependencies": {
"@types/eslint": "^7.2.0",
"@types/express": "^4.17.13",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}