-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.69 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
{
"name": "blink_api",
"version": "0.1.0",
"description": "blink nodejs & express api",
"main": "dist/index.js",
"scripts": {
"start": "NODE_ENV=production node dist/index.js",
"dev": "NODE_ENV=development nodemon --watch './**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.ts,.tsx --fix",
"prepare": "husky install",
"prettier": "prettier --write src/",
"typescript": "tsc --noEmit",
"staging": "sh ./scripts/deploy_staging.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "1.19.2",
"compression": "1.7.4",
"cors": "2.8.5",
"crypto": "1.0.1",
"dotenv-flow": "3.2.0",
"express": "4.17.3",
"glob": "7.2.0",
"google-spreadsheet": "3.3.0",
"hashids": "2.2.10",
"joi": "17.6.0",
"logplease": "1.2.15",
"mongoose": "6.2.3",
"morgan": "1.10.0"
},
"devDependencies": {
"@tsconfig/node16": "1.0.2",
"@types/compression": "1.7.2",
"@types/cors": "2.8.12",
"@types/dotenv-flow": "3.2.0",
"@types/express": "4.17.13",
"@types/glob": "7.2.0",
"@types/morgan": "1.9.3",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"eslint": "8.9.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.25.4",
"husky": "7.0.4",
"nodemon": "2.0.15",
"prettier": "2.6.0",
"ts-node": "10.5.0",
"tsconfig-paths": "3.12.0",
"tscpaths": "0.0.9",
"typescript": "4.5.5"
}
}