-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.98 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "blueprism-automatec-api",
"version": "0.1.1",
"author": "Peter Danis <peter.danis@outlook.com>",
"scripts": {
"build": "rmdir /Q /S build & nexe -i ./src/server.js -o ./build/Blue_Prism_AutomateC_API_server.exe -t windows-x64-12.18.2 && copy .\\assets\\*.* .\\build\\ && ren .\\build\\WinSW.NET4.exe Blue_Prism_AutomateC_API_installer.exe && powershell -Command \"(gc .sample-env) -replace 'NODE_ENV=development', 'NODE_ENV=production' -replace 'BP_API_FILELOG=false', 'BP_API_FILELOG=true' | Out-File -encoding ASCII ./build/.env\"",
"debug": "set DEBUG=express:* & npm start",
"lint": "eslint src/**/*.js tests/**/*.js",
"lint-fix": "eslint --fix src/**/*.js tests/**/*.js",
"start": "nodemon --watch .env --watch src ./src/server.js",
"test": "jest",
"test-cover": "jest --coverage --noStackTrace",
"test-watch": "jest --watch --noStackTrace"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"express": "~4.17.1",
"express-rate-limit": "^5.2.6",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"rotating-file-stream": "^2.1.5",
"swagger-ui-express": "^4.1.6",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-security": "^1.4.0",
"express-oas-generator": "1.0.32",
"jest": "^26.6.3",
"nexe": "^3.3.7",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"json",
"lcov",
"text"
],
"testEnvironment": "node"
}
}