-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.33 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.33 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
38
39
{
"name": "jetsetradio-api",
"version": "1.1.6",
"description": "A Data Provider relating to the JSR/JSRF universe",
"type": "module",
"main": "src/app.js",
"scripts": {
"build": "npm install",
"prod": "export $(cat ./prod.env | egrep -v '#|^$' | xargs) && node src/utils/swagger.js",
"qa": "export $(cat ./qa.env | egrep -v '#|^$' | xargs) && nodemon --inspect --ignore src/utils/ src/utils/swagger.js",
"test": "export $(cat ./qa.env | egrep -v '#|^$' | xargs) && node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"test:file": "export $(cat ./qa.env | egrep -v '#|^$' | xargs) && node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js"
},
"keywords": [],
"author": "RazzNBlue",
"license": "Apache 2.0",
"dependencies": {
"axios": "^1.11.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-list-endpoints": "^6.0.0",
"express-rate-limit": "^6.7.0",
"memory-cache": "^0.2.0",
"mongodb": "^5.8.0",
"nodemon": "^3.0.1",
"serve-favicon": "^2.5.0",
"swagger-autogen": "^2.23.1",
"swagger-ui-express": "^4.6.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"mongodb-memory-server": "^8.12.2"
}
}