-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.98 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
61
62
63
64
{
"name": "developersdo-opensource-data",
"version": "1.0.0",
"description": "Data source for https://developersdo.github.com/opensource",
"main": "index.js",
"dependencies": {
"@types/bluebird": "^3.5.38",
"@types/debug": "^4.1.7",
"@types/ejs": "^3.1.2",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@types/validator": "^13.7.14",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"graphql": "^16.6.0",
"graphql-request": "^5.2.0",
"gzip-size": "^7.0.0",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"prettier": "^2.8.7",
"pretty-bytes": "^6.1.0",
"pretty-quick": "^3.1.3",
"rimraf": "^4.4.1",
"sequelize": "^6.30.0",
"sequelize-cli": "^6.6.0",
"sqlite3": "^5.1.6",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"yargs": "^17.7.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf ./build",
"migrations:add": "ts-node ./src/scripts/add-migration.ts",
"premigrations:build": "npm run clean",
"migrations:build": "tsc ./src/db/migrations/* -outDir ./build/migrations",
"premigrations:run": "npm run migrations:build",
"migrations:run": "sequelize db:migrate",
"lint": "eslint . --ext .js,.ts",
"scrape": "ts-node ./src/scripts/scrape.ts",
"generate": "ts-node ./src/scripts/generate.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/developersdo/opensource-data.git"
},
"author": "Rubens Mariuzzo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/developersdo/opensource-data/issues"
},
"homepage": "https://github.com/developersdo/opensource-data#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint; pretty-quick --staged"
}
}
}