-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 960 Bytes
/
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
{
"name": "server",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsc-watch --onSuccess \"node --experimental-specifier-resolution=node ./dist\"",
"build": "tsc",
"start": "node --experimental-specifier-resolution=node ./dist"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"isomorphic-dompurify": "^0.26.0",
"jsonschema": "^1.4.1",
"mongodb": "^4.13.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@types/validator": "^13.7.10",
"eslint": "^8.31.0",
"eslint-config-hardcore": "^26.0.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.4"
}
}