-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 962 Bytes
/
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
{
"name": "typesafe-sql",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build:ci": "npm run build:ci --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"sdc-check": "sdc-check -d .",
"publish": "npm publish --workspace packages/describe-query --workspace packages/rescript-describe-query --workspace packages/builder"
},
"devDependencies": {
"dotenv": "^16.0.3",
"jest": "^28.1.3",
"prettier": "2.8.2",
"sdc-check": "^1.0.2",
"esbuild": "^0.14.53",
"rescript": "^9.1.4"
},
"sdc-check": {
"options": {
"daysBeforeUpgradeToNewVersion": 7
},
"errors": [
"lockfile-is-not-safe",
"package-is-too-new",
"install-scripts",
"obfuscated-code",
"has-os-scripts",
"dangerous-shell-commands",
"released-after-long-period-of-inactivity",
"too-many-decision-makers",
"no-source-code"
]
}
}