-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1009 Bytes
/
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
{
"name": "elm-express",
"version": "3.0.0",
"description": "JavaScript bridge to enable the usage of Elm in the backend through Express",
"main": "dist/index.js",
"files": [
"/dist"
],
"author": "Éber Freitas Dias <[email protected]>",
"license": "MIT",
"scripts": {
"dist": "tsc --outDir dist --declaration",
"lint": "eslint ./ts",
"format": "prettier . --write"
},
"dependencies": {
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-session": "^1.17.3",
"uuid": "^9.0.0",
"xhr2": "^0.2.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"elm-review": "^2.10.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "3.0.2",
"typescript": "^5.1.6"
}
}