-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "dashboard-backend",
"version": "1.0.0",
"main": "src/app.js",
"scripts": {
"start": "nodemon src/app.ts",
"build": "tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1",
"license-header": "node scripts/license-header.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"license": "MIT",
"devDependencies": {
"@types/async-redis": "^1.1.3",
"@types/express": "^4.17.9",
"@types/redis": "^2.8.28",
"concurrently": "^5.3.0",
"husky": "^4.3.5",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
},
"dependencies": {
"async-redis": "^1.1.7",
"axios": "^0.21.1",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"downsample": "1.3.0",
"epsg": "^0.5.0",
"express": "^4.17.1",
"node-cron": "^2.0.3",
"redis": "^3.0.2",
"reproject": "^1.2.6"
}
}