-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 978 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": "reactivesearch-api-sql",
"version": "0.0.1",
"description": "",
"main": "index.ts",
"scripts": {
"clean": "rm -rf lib",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch './**/*.ts' --exec 'ts-node --project tsconfig-dev.json' src/server.ts",
"build": "npm run clean && rollup --config rollup.config.js --environment INCLUDE_DEPS,BUILD:production"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"postgres": "^3.3.5",
"typescript": "^5.2.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.4",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/node": "^20.7.0",
"nodemon": "^3.0.1",
"rollup": "^2.79.1",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.6.2"
}
}