-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"name": "bestofjs-backend",
"version": "0.2.0",
"description": "Best of JavaScript backend applications",
"scripts": {
"build": "node cli/tasks/daily-process",
"daily": "node cli/tasks/daily-process && npm run deploy:prod",
"daily-npm-update": "node cli/tasks/daily-package-data-process",
"lint": "eslint **/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "serve ./build"
},
"author": "Michael Rambeau",
"license": "MIT",
"engines": {
"node": "18.x"
},
"repository": {
"type": "git",
"url": "https://github.com/bestofjs-backend"
},
"dependencies": {
"@bestofjs/snapshots": "0.0.3",
"debug": "^4.3.4",
"dotenv": "^6.2.0",
"emoji-regex": "^10.1.0",
"fs-extra": "^8.0.1",
"gh-got": "^8.1.0",
"got": "^11.8.5",
"graphql-request": "^1.8.2",
"immer": "^3.1.3",
"is-absolute-url": "^3.0.1",
"lodash": "^4.17.11",
"mongodb": "^4.4.0",
"mongoose": "^6.4.6",
"p-map": "^2.0.0",
"p-props": "^3.0.1",
"p-timeout": "^3.1.0",
"package-json": "^6.4.0",
"pretty-bytes": "^5.2.0",
"pretty-ms": "^5.0.0",
"scrape-it": "^6.0.1",
"slugify": "^1.3.4",
"validator": "^11.1.0",
"winston": "^3.2.1",
"yargs": "^13.2.4"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.0.1",
"luxon": "^1.25.0",
"prettier": "^1.16.4"
}
}