-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.21 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.21 KB
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
{
"name": "common",
"version": "1.0.0",
"type": "module",
"scripts": {
"create:sample": "node .common/scripts/create-sample.js",
"update:sample": "node .common/scripts/update-sample.js",
"update:readme": "node .common/scripts/update-readme.js",
"lint:fix": "xo --fix",
"lint": "xo"
},
"dependencies": {
"@azure/functions": "^4",
"dotenv": "^16",
"openai": "^4",
"@types/node": "^20",
"azure-functions-core-tools": "^4",
"azurite": "^3",
"concurrently": "^9",
"rimraf": "^6",
"typescript": "^5",
"lit": "^3",
"vite": "^6"
},
"devDependencies": {
"xo": "^0.60"
},
"xo": {
"space": true,
"prettier": true,
"envs": [
"node"
],
"rules": {
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"import/no-unassigned-import": "off",
"unicorn/prevent-abbreviations": [
"error",
{
"allowList": {
"env": true,
"Dir": true,
"Db": true
}
}
]
}
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true
}
}