-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 KB
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
{
"private": true,
"name": "babel-proxy-server",
"version": "2.1.3",
"description": "Proxy that converts js files with babel",
"main": "src/server.js",
"type": "module",
"author": "Daniel Kostro <kostro.d@gmail.com>",
"scripts": {
"eslint": "eslint --cache ./",
"eslint-fix": "eslint ./ --fix",
"prettier": "prettier --check ./",
"prettier-write": "prettier --write ./",
"start": "node --env-file=.env src/server.js",
"dev": "node --env-file=.env --watch src/server.js"
},
"dependencies": {
"@babel/core": "^7.28.6",
"@babel/plugin-transform-destructuring": "^7.28.5",
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
"@babel/preset-env": "^7.28.6",
"@zakodium/babel-plugin-transform-modules-amd": "^1.1.2",
"cors": "^2.8.5",
"express": "^5.2.1",
"http-proxy-middleware": "^3.0.5",
"minimist": "^1.2.8"
},
"license": "MIT",
"volta": {
"node": "24.12.0"
},
"devDependencies": {
"eslint": "^9.39.2",
"eslint-config-cheminfo": "^17.1.0",
"prettier": "^3.8.0"
}
}