-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "redtape-api",
"version": "1.0.1",
"description": "",
"main": "src/main.js",
"type": "module",
"scripts": {
"test": "jest",
"start": "cd src && babel-node main.js",
"convert": "npx babel src -d dist",
"package": "pkg ./dist/main.js -o dist-public/RedTape-API --public-packages \"*\"",
"build": "npm run convert && npm run package && ROBOCOPY .\\ .\\dist-public\\ .env"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"pkg": {
"options": ["experimental-modules"],
"assets": ["node_modules/.prisma/client/*.node"]
},
"author": "Akatron Network",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@prisma/client": "^4.9.0",
"babel-jest": "^29.3.1",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"es6": "^0.0.7",
"express": "^4.18.2",
"jest": "^29.3.1",
"jsonschema": "^1.4.1",
"morgan": "^1.10.0",
"prisma": "^4.9.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"babel-core": "^7.0.0-bridge.0"
}
}