-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.4 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@distributeaid/needs-assessment-storage-backend",
"version": "0.0.0-development",
"description": "Storage for Needs Assessments.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/distributeaid/needs-assessment-storage.git"
},
"bugs": {
"url": "https://github.com/distributeaid/needs-assessment-storage/issues"
},
"homepage": "https://github.com/distributeaid/needs-assessment-storage#readme",
"keywords": [
"distribute-aid",
"backend",
"needs-assessment"
],
"scripts": {
"start": "npm run dev",
"dev": "./node_modules/.bin/nodemon --optimize_for_size --max_old_space_size=920 --gc_interval=100 src/server/dev.ts",
"prod": "./node_modules/.bin/nodemon --optimize_for_size --max_old_space_size=920 --gc_interval=100 src/server/prod.ts",
"test": "jest",
"prepare": "husky install"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --ext .js,.ts,.jsx,.tsx"
],
"*.{md,json,yaml,yml,html}": [
"prettier --write"
]
},
"author": "Distribute Aid | https://distributeaid.org/",
"license": "AGPL-3.0-only",
"dependencies": {
"@nordicsemiconductor/from-env": "1.0.3",
"@sinclair/typebox": "^0.25.24",
"ajv": "8.12.0",
"ajv-formats": "2.1.1",
"ajv-keywords": "5.1.0",
"body-parser": "1.20.2",
"chalk": "5.2.0",
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"express": "4.18.2",
"fast-equals": "4.0.3",
"id128": "1.6.6",
"jsonata": "2.0.3",
"nodemailer": "6.9.3",
"nodemon": "2.0.22",
"passport": "0.6.0",
"passport-cookie": "1.0.9"
},
"devDependencies": {
"@nordicsemiconductor/asset-tracker-cloud-code-style": "11.0.186",
"@nordicsemiconductor/eslint-config-asset-tracker-cloud-typescript": "10.0.59",
"@swc/core": "1.3.68",
"@swc/jest": "0.2.26",
"@types/body-parser": "1.19.2",
"@types/compression": "1.7.2",
"@types/cookie-parser": "1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "4.17.17",
"@types/jest": "29.4.4",
"@types/lodash": "4.14.195",
"@types/node": "18.15.12",
"@types/nodemailer": "6.4.8",
"@types/passport": "1.0.12",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "^6.7.0",
"clever-tools": "2.10.1",
"commander": "9.5.0",
"eslint": "8.36.0",
"eslint-plugin-unicorn": "45.0.2",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.3",
"prettier": "2.8.8",
"prettier-plugin-organize-imports": "3.2.2",
"regenerator-runtime": "0.13.11",
"supertest": "6.3.3",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "4.9.5"
},
"prettier": "@nordicsemiconductor/asset-tracker-cloud-code-style/.prettierrc",
"jest": {
"testRegex": ".+\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
},
"extensionsToTreatAsEsm": [
".ts"
],
"globals": {
"ts-jest": {
"useESM": true
}
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
}
}