-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "simplesheets-server",
"version": "1.0.0",
"description": "simplesheets server",
"main": "index.api.js",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only ./src/index.api.ts | roarr pretty-print",
"start:debug": "ts-node-dev --transpile-only --respawn --inspect=4321 --project tsconfig.json ./src/index.api.ts | roarr pretty-print"
},
"author": "",
"license": "ISC",
"dependencies": {
"@starefossen/express-health": "^1.0.1",
"apollo-server-core": "^3.10.2",
"apollo-server-express": "^3.10.2",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-request-id": "^1.4.1",
"graphql": "^16.6.0",
"lodash": "^4.17.21",
"mongodb": "^4.10.0",
"mongoose": "^6.6.5",
"morgan": "^1.10.0",
"roarr": "^7.12.3"
},
"devDependencies": {
"@roarr/cli": "^5.7.0",
"@types/cors": "^2.8.12",
"@types/express-request-id": "^1.4.3",
"@types/lodash": "^4.14.185",
"@types/morgan": "^1.9.3",
"@types/neat-csv": "^5.1.1",
"@types/node": "^18.7.16",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.3"
}
}