forked from BrainTease/Brain-Storm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.61 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
{
"name": "brain-storm",
"version": "1.0.0",
"private": true,
"description": "Brain-Storm - Blockchain Education Platform on Stellar",
"workspaces": [
"packages/types",
"packages/sdk",
"apps/frontend",
"apps/backend"
],
"scripts": {
"dev:frontend": "npm run dev --workspace=apps/frontend",
"dev:backend": "npm run start:dev --workspace=apps/backend",
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"test:e2e": "npm run test:e2e --workspace=apps/frontend",
"test:e2e:ci": "npm run test:e2e:ci --workspace=apps/frontend",
"test:unit:frontend": "npm run test --workspace=apps/frontend",
"test:unit:backend": "npm run test:unit --workspace=apps/backend",
"test:coverage:frontend": "npm run test:coverage --workspace=apps/frontend",
"test:coverage:backend": "npm run test:unit:coverage --workspace=apps/backend",
"test:grants": "npm run test:grants --workspace=apps/backend",
"test:certificates": "npm run test:certificates --workspace=apps/backend",
"test:load": "./scripts/load-test.sh",
"test:load:marketplace": "k6 run scripts/load-tests/marketplace-purchase.js",
"test:mutation": "stryker run",
"test:mutation:report": "stryker run --reporters html",
"prepare": "husky install"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/jest-runner": "^9.6.1",
"@stryker-mutator/typescript-checker": "^9.6.1",
"husky": "^9.0.0"
},
"dependencies": {}
}