-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 975 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 975 Bytes
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
{
"name": "ts-eigencaster",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc && cp .env dist/",
"compute": "yarn build && node dist/scripts/compute.js",
"migrate": "npx knex migrate:up",
"serve": "yarn build && node dist/scripts/start-server.js",
"global-trust": "yarn build && node dist/scripts/get-global-trust.js",
"update-config": "yarn build && node dist/scripts/update-config.js"
},
"dependencies": {
"@types/lodash": "^4.14.191",
"axios": "1.1.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-prom-bundle": "^7.0.0",
"humps": "^2.0.1",
"knex": "^2.3.0",
"lodash": "^4.17.21",
"pg": "^8.8.0",
"prom-client": "^15.1.0",
"tslog": "^4.9.2",
"typescript": "^5.4.2",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/humps": "^2.0.2",
"@types/yargs": "^17.0.17",
"ts-node": "^10.9.2"
}
}