-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 KB
/
package.json
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
{
"name": "zephyr-forge",
"version": "1.0.0",
"description": "Official installation server and script forge for the Zephyr development environment.",
"type": "module",
"private": true,
"scripts": {
"start": "bun ./src/server.js",
"dev": "bun --watch ./src/server.js",
"test": "bun test --pattern=\"^(?!.*installer\\.test\\.js).*\\.test\\.js$\"",
"test:watch": "bun test --watch --pattern=\"^(?!.*installer\\.test\\.js).*\\.test\\.js$\"",
"test:coverage": "bun test --coverage --pattern=\"^(?!.*installer\\.test\\.js).*\\.test\\.js$\""
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/bun": "latest",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"eslint": "^9.18.0",
"est": "^0.2.1-alpha",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"compression": "^1.7.5",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"morgan": "^1.10.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
}
}