-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -L --exec ts-node src/index.ts",
"deploy": "git push heroku HEAD:master",
"lint": "eslint . --ext .tsx,.ts",
"test": "react-scripts test --watchAll=true",
"build": "echo \" i don't build \" ",
"start-prod": "ts-node src/index.ts",
"start": "npm run start-prod"
},
"keywords": [],
"author": "Feng Xiong",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.29.1",
"mongoose": "^5.10.13",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"validator": "^13.1.17",
"@types/body-parser": "^1.19.0",
"@types/node": "^14.14.22",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/mongoose": "^5.10.0",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.7.0",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-require-sort": "^1.2.2"
}
}