-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
68 lines (68 loc) · 2.11 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
65
66
67
68
{
"private": true,
"name": "opencollective-tools",
"version": "1.0.0",
"license": "MIT",
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/opencollective/opencollective-tools.git"
},
"bugs": {
"url": "https://github.com/opencollective/opencollective-tools/issues"
},
"scripts": {
"graphql:update": "npm-run-all graphql:updateV1 graphql:updateV2",
"graphql:updateV1": "curl https://raw.githubusercontent.com/opencollective/opencollective-api/main/server/graphql/schemaV1.graphql --output schemaV1.graphql && prettier schemaV1.graphql --write",
"graphql:updateV2": "curl https://raw.githubusercontent.com/opencollective/opencollective-api/main/server/graphql/schemaV2.graphql --output schemaV2.graphql && prettier schemaV2.graphql --write",
"lint": "eslint \"*.js\"",
"lint:fix": "npm run lint -- --fix",
"lint:quiet": "npm run lint -- --quiet",
"prettier": "prettier \"*.@(js|json|md)\"",
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write"
},
"dependencies": {
"@slack/bolt": "^3.12.2",
"axios": "^0.26.1",
"commander": "^8.3.0",
"csv-parse": "^5.0.4",
"debug": "^4.3.3",
"dotenv": "^14.3.2",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"lodash": "^4.17.21",
"prompt": "^1.2.2"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"depcheck": "^1.4.7",
"eslint": "^8.55.0",
"eslint-config-opencollective": "^3.0.3",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^4.3.5",
"lint-staged": "^10.5.4",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"prettier-package-json": "^2.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
],
"package.json": [
"prettier-package-json --write"
]
}
}