-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
61
62
63
64
65
{
"name": "rbs",
"version": "1.0.0",
"description": "Backend for RBS",
"main": "dist/index.js",
"author": "Adam Tizzone",
"license": "MIT",
"dependencies": {
"@paypal/checkout-server-sdk": "^1.0.1",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/node": "^12.7.4",
"@types/node-cron": "^2.0.3",
"@types/nodemailer": "^6.4.1",
"@types/paypal-rest-sdk": "^1.7.5",
"@types/swagger-jsdoc": "^6.0.0",
"@types/swagger-ui-express": "^4.1.2",
"@types/validator": "^13.1.3",
"chai": "^4.2.0",
"cors": "^2.8.5",
"currency.js": "^2.0.3",
"dayjs": "^1.10.4",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"handlebars": "^4.7.7",
"jsqr": "^1.3.1",
"mocha": "^8.2.1",
"mochawesome": "^6.2.1",
"mysql": "^2.17.1",
"node-cron": "^3.0.0",
"nodemailer": "^6.5.0",
"pdfkit": "^0.12.1",
"qrcode": "^1.4.4",
"sqlite3": "^5.0.2",
"square": "^8.1.1",
"supertest": "^6.1.3",
"swagger-jsdoc": "^6.0.2",
"swagger-ui-express": "^4.1.0",
"typeorm": "^0.2.18",
"typescript": "4.1.3",
"validator": "^13.5.2",
"winston": "^3.2.1"
},
"scripts": {
"notprebuild": "eslint src || true",
"prebuild": "true",
"build": "tsc",
"prestart": "yarn run build",
"serve": "node .",
"watch": "tsc --watch",
"test": "ls ./tests/*.js | entr ./node_modules/.bin/mocha --reporter mochawesome ./tests/test.js",
"ci_test": "./node_modules/.bin/mocha ./tests/test.js"
},
"devDependencies": {
"@types/pdfkit": "^0.11.0",
"@types/qrcode": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^31.6.0",
"eslint-plugin-prefer-arrow": "^1.2.3"
}
}