-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 752 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 752 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
{
"name": "realworld-backend-elm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dev.mjs",
"build": "node ./build.mjs",
"test": "cd integration && APIURL=http://localhost:3000/api ./run-api-tests.sh"
},
"author": "Andrew MacMurray",
"license": "MIT",
"devDependencies": {
"@es-exec/esbuild-plugin-start": "^0.0.5",
"@vercel/node": "^3.0.14",
"elm": "^0.19.1-6",
"esbuild": "^0.19.4",
"esbuild-plugin-elm": "^0.0.12"
},
"dependencies": {
"@andrewmacmurray/elm-concurrent-task": "^1.1.0",
"@vercel/postgres": "^0.5.1",
"bcryptjs": "^2.4.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3",
"zod": "^3.22.4"
}
}