-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.49 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
{
"name": "movie-justwatch",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fe:dev": "vite",
"fe:serve": "vite preview",
"be:dev": "nodemon server.js",
"start": "node server.js",
"build": "vite build",
"dev": "concurrently \"npm:fe:dev\" \"npm:be:dev\"",
"app": "npx cross-var echo $npm_package_name",
"fly:deploy": "npm run build && flyctl deploy",
"fly:logs": "npx cross-var flyctl logs -a $npm_package_name",
"fly:stop": "npx cross-var flyctl scale count 0 -a $npm_package_name",
"fly:start": "npx cross-var flyctl scale count 1 -a $npm_package_name",
"fly:ssh": "npx cross-var flyctl ssh console -a $npm_package_name"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fly-examples/movie-justwatch.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fly-examples/movie-justwatch/issues"
},
"homepage": "https://github.com/fly-examples/movie-justwatch#readme",
"dependencies": {
"axios": "^1.3.2",
"body-parser": "^1.20.1",
"cheerio": "^1.0.0-rc.12",
"cookie-session": "^2.0.0",
"diegos-fly-logger": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"morgan": "^1.10.0",
"redis": "^4.6.4",
"ua-parser-js": "^1.0.34",
"uuid": "^9.0.0"
},
"devDependencies": {
"concurrently": "^8.0.1",
"cross-var": "^1.1.0",
"vite": "^4.2.1"
}
}