-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "glean-slab",
"version": "1.0.0",
"description": "Sync Slab documents with Glean",
"type": "module",
"main": "build/index.js",
"author": "Iterable",
"homepage": "https://iterable.com/",
"license": "Apache-2.0",
"private": true,
"scripts": {
"prebuild": "rimraf ./build",
"build": "tsc",
"predev": "yarn build",
"dev": "yarn start",
"prepare": "husky",
"prettier": "prettier --check 'src/**/*.{js,jsx,ts,tsx}'",
"prettier:fix": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"start": "node build/index.js"
},
"dependencies": {
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"dotenv-safe": "^9.1.0",
"got": "^14.4.5",
"graphql": "^16.6.0",
"graphql-request": "^7.1.2"
},
"devDependencies": {
"@types/dotenv-safe": "^8.1.2",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": false,
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}