-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
44 lines (44 loc) · 1.46 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
{
"name": "paypal-sdk-server-side-integration",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"check-node-version": "node scripts/check-node-version.js",
"dev": "npm run check-node-version && nodemon --watch './**/*.ts' --watch '.env' --watch './**/data/*.json' --exec 'ts-node' src/server.ts",
"lint": "eslint src --ext .ts",
"format": "prettier --write .",
"test": "tap --ts --no-check-coverage",
"coverage": "npm test -- --coverage-report=html",
"coverage:ci": "npm test -- --coverage-report=html --no-browser --no-check-coverage -R terse",
"build": "rimraf dist && tsc",
"validate": "npm run check-node-version && prettier --check . && npm run lint && tsc --noEmit && npm run coverage:ci",
"start": "NODE_ENV=production node dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/static": "^6.9.0",
"@paypal/paypal-js": "^5.1.5",
"dotenv": "^16.0.3",
"fastify": "^4.15.0",
"pino": "^8.11.0",
"undici": "^5.21.0"
},
"devDependencies": {
"@types/node": "^18.15.5",
"@types/tap": "^15.0.8",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"nodemon": "^2.0.21",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.6",
"rimraf": "^4.4.0",
"tap": "^16.3.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.0.2"
}
}