-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"private": true,
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "npm run clean; npm run build; npm run copy-views; npm run client-build; nodemon -e js -w dist dist/index.js",
"client-build": "npm run check; parcel build",
"copy-views": "mkdir -p dist/views; cp src/views/* dist/views",
"check": "tsc --noEmit",
"clean": "rm -rf dist"
},
"targets": {
"client": {
"source": "src/client/liveview.ts",
"context": "browser",
"distDir": "dist/client"
},
"css": {
"source": "src/client/app.css",
"context": "browser",
"distDir": "dist/client"
}
},
"dependencies": {
"@liveviewjs/express": "^0.8.1",
"express": "^4.18.1",
"express-session": "^1.17.2",
"liveviewjs": "^0.8.1",
"nprogress": "^0.2.0",
"phoenix": "^1.6.9",
"phoenix_html": "^3.2.0",
"phoenix_live_view": "^0.17.10",
"todomvc-app-css": "^2.0.0",
"todomvc-common": "^1.0.0",
"ws": "^8.6.0",
"zod": "^3.14.3"
},
"devDependencies": {
"@types/express-session": "^1.17.4",
"@types/node": "^17.0.17",
"@types/nprogress": "^0.2.0",
"@types/phoenix": "^1.5.4",
"@types/phoenix_live_view": "^0.15.1",
"@types/ws": "^8.5.3",
"nodemon": "^2.0.15",
"parcel": "^2.3.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"keywords": [
"liveviewjs",
"liveview",
"phoenix",
"typescript",
"javascript",
"framework"
],
"author": "Donnie Flood <[email protected]>",
"license": "MIT"
}