-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
76 lines (76 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@happy-plants/server",
"version": "1.0.0",
"private": true,
"description": "Web server for HappyPlants",
"author": "Moritz Kröger <[email protected]> (https://moritz.berlin)",
"homepage": "https://github.com/morkro/happy-plants#readme",
"main": "dist/src/index.js",
"engines": {
"node": ">=12.0.0"
},
"directories": {
"src": "src"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/morkro/happy-plants.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "NODE_ENV=development npm run build && node dist/src/index.js",
"prod": "NODE_ENV=production npm run build && node dist/src/index.js",
"test": "echo \"Error: run tests from root\" && exit 1",
"lint": "tsc --noEmit && eslint . --ext .js,.jsx,.ts,.tsx"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"_moduleAliases": {
"@": "dist/src"
},
"dependencies": {
"@sentry/node": "^5.15.4",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase-admin": "^8.10.0",
"helmet": "^3.22.0",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/eslint": "^6.1.8",
"@types/express": "^4.17.3",
"@types/helmet": "0.0.45",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"typescript": "^3.8.3"
}
}