-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 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
44
45
{
"name": "discoveryfunnel",
"version": "1.0.0",
"description": "Express.js server for product discovery and vetting using ICE service and Neon database",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix"
},
"keywords": [
"express",
"api",
"product-discovery",
"3d-printing"
],
"author": "",
"license": "ISC",
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js"
]
},
"dependencies": {
"@neondatabase/serverless": "^1.0.1",
"cors": "^2.8.5",
"dotenv": "^17.0.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@eslint/js": "^9.30.0",
"eslint": "^9.30.0",
"jest": "^30.0.3",
"nodemon": "^3.1.10",
"supertest": "^7.1.1"
}
}