-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1006 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1006 Bytes
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
{
"name": "change-detection",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc --watch",
"start": "node dist/_server.js",
"gen-docs": "jsdoc -c jsdoc.json",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/_server.js\""
},
"engines": {
"node": "16.18.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^7.4.0",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"helmet": "^6.0.0",
"morgan": "^1.10.0",
"neat-csv": "^7.0.0",
"nodemon": "^2.0.20",
"rosaenlg": "^3.2.5"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.18",
"@types/papaparse": "^5.3.5",
"better-docs": "^2.7.2",
"jsdoc": "^3.6.11",
"jsdoc-mermaid": "^1.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}