forked from patheticGeek/gdrive-index
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "gdrive-index",
"version": "1.0.0",
"description": "A index server for google drive",
"main": "index.js",
"scripts": {
"prebuild": "npm install && cd web && npm install",
"build": "cd web && npm run build",
"dev": "concurrently --kill-others \"PORT=3001 nodemon index.js\" \"cd web && npm run start\"",
"start": "NODE_ENV=production node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patheticGeek/gdrive-index.git"
},
"keywords": [
"gdrive",
"google",
"drive",
"index",
"server",
"heroku"
],
"author": "pathetic_geek",
"license": "ISC",
"bugs": {
"url": "https://github.com/patheticGeek/gdrive-index/issues"
},
"homepage": "https://github.com/patheticGeek/gdrive-index#readme",
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"googleapis": "^52.1.0",
"nodemon": "^2.0.4"
},
"devDependencies": {
"concurrently": "^5.2.0"
},
"nodemonConfig": {
"ignore": [
".next",
"node_modules",
"web"
]
}
}