-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.35 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.35 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
40
41
42
43
{
"name": "osxreader",
"version": "1.0.0",
"type": "module",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prestart": "npm run clean && npm run build",
"start:backend": "NODE_OPTIONS='--trace-warnings --trace-uncaught --trace-exit --trace-sigint --stack-trace-limit=100' node --loader ts-node/esm src/server.ts",
"start": "concurrently \"npm run start:backend\" \"wait-on http://localhost:3000 && open http://localhost:3000\"",
"lint": "eslint . --ext .ts",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/ws": "^8.5.10",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"wait-on": "^7.2.0"
},
"dependencies": {
"alchemy-sdk": "^3.6.0",
"dotenv": "^16.5.0",
"express": "^4.19.2",
"nfc-pcsc": "^0.8.1",
"ws": "^8.17.0"
}
}