-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 901 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
{
"name": "pace-website",
"version": "1.0.0",
"main": "index.js",
"license": "GPL",
"scripts": {
"start": "nodemon api/out-tsc/server.js",
"watch-start": "tsc --project ./api/ --outDir ./api/out-tsc -w & nodemon -q api/out-tsc/server.js",
"dev": "nodemon --config nodemon.json api/out-tsc/server.js",
"dev:debug": "nodemon --config nodemon.json --inspect-brk server.js",
"build": "tsc --project ./api/ --outDir ./api/out-tsc"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/express": "^4.17.11",
"@types/node": "^14.14.31",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"@opensearch-project/opensearch": "^1.0.2",
"@types/ioredis": "^4.26.1",
"express": "^4.17.1",
"ioredis": "^4.27.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"tslib": "^2.2.0"
}
}