-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 913 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 913 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
{
"name": "esg-score-api",
"version": "1.0.0",
"description": "Financial ESG Score API",
"main": "index.js",
"scripts": {
"run-prod": "node ./build/index.js",
"start": "babel-node ./src/index.js",
"build-babel": "babel src/ --out-dir build --copy-files",
"build": "npm run clean && npm run build-babel",
"clean": "rm -rf build && mkdir build"
},
"repository": "git@github.com:Novatics/esg-score-api.git",
"author": "Thiago Ferreira <milovaz@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.18.10",
"axios": "^0.27.2",
"express": "^4.18.1"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/node": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.19.1",
"@babel/runtime": "^7.19.0"
}
}