-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.49 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.49 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": "specmatic-order-api-nodejs",
"version": "0.0.0",
"private": true,
"specmatic": {
"logLevel": "debug"
},
"scripts": {
"start": "set DEBUG=specmatic-order-api-nodejs:* && node ./src/bin/www",
"dev": "nodemon set DEBUG=specmatic-order-api-nodejs:* node ./src/bin/www",
"test": "cross-env SPECMATIC_LOG_LEVEL=debug NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 node ./node_modules/jest/bin/jest.js --collectCoverage --detectOpenHandles",
"test-happy-path": "cross-env SPECMATIC_LOG_LEVEL=debug NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 node ./node_modules/jest/bin/jest.js --collectCoverage --detectOpenHandles",
"prepare": "husky",
"lint": "eslint .",
"prettier": "prettier --write .",
"pre-commit": "npm run lint && npm run prettier",
"pre-push": "npm run lint && npm run prettier && npm run test"
},
"dependencies": {
"axios": "^1.13.2",
"better-sqlite3": "^12.4.1",
"debug": "^4.4.3",
"express": "^5.1.0",
"express-openapi-validator": "^5.6.0",
"globals": "^16.5.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/supertest": "^6.0.3",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^30.2.0",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"specmatic": "^2.39.2",
"supertest": "^7.1.4",
"testcontainers": "^11.8.0"
}
}