forked from Bishma/draft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 946 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 946 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
30
31
32
33
34
35
36
37
{
"name": "movie-draft",
"description": "Build a roster of upcoming films and compete for the highest gross earnings.",
"version": "2.0.0",
"private": true,
"type": "module",
"imports": {
"#*.js": "./*.js",
"#*": "./*/index.js"
},
"scripts": {
"lint": "npx standard",
"test": "npm lint && node ./bin/tests",
"create-draft": "node ./bin/create-draft.js",
"add-movies": "node ./bin/add-movies.js",
"edit-movies": "node ./bin/edit-movies.js",
"scrape": "node ./bin/scrape-gross-usa.js"
},
"dependencies": {
"async": "^3.2.5",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"debug": "^4.3.4",
"dotenv": "^16.4.0",
"express": "^4.18.2",
"morgan": "^1.10.0",
"mysql2": "^3.8.0",
"pg": "^8.6.0",
"pg-format": "^1.0.4",
"prompts": "^2.4.2",
"pug": "^3.0.2",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"standard": "^17.1.0"
}
}