-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.09 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
46
{
"name": "pay-statuspage",
"version": "1.0.0",
"description": "GOV.UK Pay StatusPage",
"main": "index.js",
"type": "module",
"scripts": {
"build": "remix vite:build",
"serve": "NODE_ENV=production node ./server.js",
"dev": "node inspect ./server.js",
"typecheck": "tsc",
"lint": "eslint",
"format": "prettier . --write"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.12.0",
"@remix-run/express": "^2.8.1",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"express": "^4.19.2",
"govuk-frontend": "^5.3.0",
"isbot": "^4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-run/dev": "^2.8.1",
"@remix-run/eslint-config": "^2.8.1",
"@types/node": "^20.12.2",
"@types/react-dom": "^18.2.23",
"eslint": "^8.57.0",
"prettier": "3.2.5",
"prisma": "^5.12.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"vite": "^5.2.7"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}