-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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
{
"name": "pigeon-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"dev": "ts-node-dev --respawn src/index.ts",
"start": "ts-node ./src/index.ts",
"build": "tsc"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-eslint": "^10.1.0",
"concurrently": "^5.2.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node-dev": "^1.0.0-pre.49"
},
"dependencies": {
"@sendgrid/mail": "^7.2.1",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cheerio": "^0.22.21",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/express-status-monitor": "^1.2.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.157",
"@types/mongoose": "^5.7.29",
"@types/node": "^14.0.14",
"@types/node-fetch": "^2.5.7",
"@types/socket.io": "^2.1.8",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"cpx": "^1.5.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-status-monitor": "^1.3.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"mongoose": "^5.9.21",
"node-fetch": "^2.6.0",
"shortid": "^2.2.15",
"socket.io": "^2.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}