-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.58 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.58 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
{
"name": "dsm-workspace",
"private": true,
"license": "MIT OR Apache-2.0",
"scripts": {
"help": "make help",
"menu": "make menu",
"setup": "make setup",
"doctor": "make doctor",
"build": "make build",
"frontend": "make frontend",
"android:build": "make android",
"android:install": "make install",
"type-check": "cd dsm_client/frontend && npm run type-check",
"fe:build": "cd dsm_client/frontend && npm run build:full-deploy",
"fe:type-check": "cd dsm_client/frontend && npm run type-check",
"fe:test": "cd dsm_client/frontend && npm run test -- --passWithNoTests",
"nodes:up": "make nodes-up",
"nodes:down": "make nodes-down",
"nodes:status": "make nodes-status",
"ship": "make install",
"verify": "make ci-scan",
"guardrails": "./scripts/enforce-guardrails.sh",
"guardrails:strict": "./scripts/enforce-guardrails.sh",
"proto:guard": "make proto-guard",
"codegen:enforce": "bash scripts/codegen_enforce.sh",
"proto:ts": "cd dsm_client/frontend && npm run proto:gen",
"coverage:aggregate": "node scripts/aggregate_coverage.mjs"
},
"devDependencies": {
"@bufbuild/protobuf": "^1.10.1",
"@bufbuild/protoc-gen-es": "^1.10.1",
"long": "^5.3.2",
"protobufjs": "^7.5.8",
"ts-proto": "^1.179.1"
},
"dependencies": {
"cross-env": "^7.0.3",
"webpack": "^5.105.0",
"webpack-cli": "^6.0.1"
},
"overrides": {
"minimatch": ">=10.0.0",
"undici": ">=7.10.0",
"serialize-javascript": ">=7.0.4",
"lodash": ">=4.17.22",
"ajv": ">=8.17.0",
"qs": ">=6.14.0"
}
}