-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
{
"name": "terminus-change-request-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node build/app.js",
"watch": "npx tsc --watch",
"start:dev": "concurrently \"npx tsc --watch\" \"nodemon build/app.js\""
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.7.16",
"@terminusdb/terminusdb-client": "^10.0.32",
"@types/swagger-ui-express": "^4.1.3",
"axios": "^1.4.0",
"body-parser": "^1.20.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"cross-fetch": "^3.1.6",
"debug": "~2.6.9",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-openapi": "^12.0.2",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"http-proxy-middleware": "^2.0.6",
"morgan": "~1.9.1",
"npm": "^9.8.0",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.23",
"concurrently": "^7.4.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.9.5"
}
}