-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "rocket-countdown-admin",
"version": "1.0.0",
"description": "Space-themed rocket launch countdown administration panel",
"main": "src/server.js",
"type": "module",
"directories": {
"test": "tests"
},
"scripts": {
"start": "node src/server.js",
"dev": "concurrently npm:dev:app npm:dev:db",
"dev:app": "nodemon src/server.js",
"dev:db": "endor run postgres",
"test": "node --test tests/",
"test:unit": "node --test tests/api.test.js",
"test:integration": "node --test tests/integration.test.js",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:seed": "node prisma/seed.js",
"wait-for-db": "node tests/wait-for-db.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@fastify/formbody": "^8.0.2",
"@fastify/static": "^8.2.0",
"@fastify/view": "^11.1.0",
"@prisma/client": "^6.11.1",
"ejs": "^3.1.10",
"ejs-mate": "^4.0.0",
"fastify": "^5.4.0",
"prisma": "^6.11.1"
},
"devDependencies": {
"@endorhq/cli": "^0.1.8",
"concurrently": "^9.2.0",
"dotenv": "^17.2.0",
"nodemon": "^3.1.10"
}
}