-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 KB
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
{
"name": "api",
"version": "1.0.0",
"description": "jamify api",
"main": "index.js",
"scripts": {
"dev": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"lint": "eslint \"src/**/*.ts\"",
"clean": "rm -rf ./node_modules",
"postinstall": "npx tsc",
"start": "tsc && node dist/server.js",
"test": "jest"
},
"author": "wuon",
"license": "ISC",
"dependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.7",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/mongoose": "^5.7.36",
"@types/node": "^13.13.21",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"express": "^5.0.0-alpha.8",
"mongoose": "^5.10.6",
"pm2": "^4.4.1",
"prettier": "^1.19.1",
"pusher": "^3.0.1",
"tsc-watch": "^4.2.9",
"typescript": "^3.9.7",
"winston": "^3.3.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0"
},
"lint-staged": {
"*.ts": [
"eslint"
]
}
}