-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 833 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 833 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
{
"name": "@lambda-feedback/ef-test-server",
"license": "UNLICENSED",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "yarn tsc",
"format": "prettier --write \"**/*.{js,json,ts,tsx}\"",
"start": "yarn node dist/index.js",
"test:types": "yarn tsc --noEmit",
"test": "yarn test:types && yarn jest"
},
"bin": "dist/start.js",
"files": [
"dist/**/*"
],
"dependencies": {
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.10.9",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}