-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.29 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
45
{
"name": "cbdc-sandbox-contact-registry",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "Apache-2.0",
"author": "Symfoni AS",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"db": "npx prisma db push",
"db:reset": "npx prisma db push --force-reset",
"seed": "npx prisma db seed",
"studio": "npx prisma studio",
"test:server": "npx playwright test --reporter=line",
"test:ci": "npx playwright test",
"postinstall": "npx playwright install",
"test": "start-server-and-test dev http://localhost:3000 test:ci",
"docker:postgres": "docker run --name contact-registry-postgres -e POSTGRES_PASSWORD=PASSWORD -e POSTGRES_USER=USER -p 5432:5432 -d postgres"
},
"dependencies": {
"@prisma/client": "4.3.1",
"next": "12.2.5",
"nextjs-cors": "^2.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "8.0.3"
},
"devDependencies": {
"@playwright/test": "^1.25.2",
"@types/node": "16.11.56",
"@types/react": "18.0.18",
"eslint": "^8.23.0",
"prettier": "^2.7.1",
"prisma": "4.3.1",
"start-server-and-test": "^1.14.0",
"ts-node": "10.9.1",
"typescript": "4.8.2"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}