forked from mycloudnexus/cc-api-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "cc-api-sandbox",
"packageManager": "yarn@4.4.1",
"license": "Apache-2.0",
"version": "0.1.0",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@tsconfig/node20": "^20.1.4",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.5",
"@types/source-map-support": "^0",
"@types/supertest": "^6.0.2",
"@types/wait-on": "^5.3.4",
"axios": "^1.7.7",
"axios-mock-adapter": "^1.22.0",
"concurrently": "^8.2.2",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.5.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.2",
"node-mocks-http": "^1.14.1",
"nodemon": "^3.1.0",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0",
"wait-on": "^8.0.1"
},
"dependencies": {
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"openapi-backend": "^5.10.6",
"pino": "^8.8.0",
"pino-http": "^8.5.1",
"source-map-support": "^0.5.21"
},
"scripts": {
"build:typescript": "tsc --build",
"build": "yarn run build:typescript",
"start": "node ./dist/src/index.js",
"dev": "ts-node ./src/index.ts",
"watch": "nodemon src/index.ts",
"lint": "eslint --max-warnings=0 ./src",
"clean": "tsc --build --clean",
"fmt": "prettier --write src/.",
"postinstall": "husky",
"test": "jest"
},
"lint-staged": {
"*.{js,ts,mjs,json,md,yml,yaml}": "yarn run prettier --write",
"*.{ts,js,mjs}": "yarn run eslint --fix"
}
}