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
27 lines (27 loc) · 709 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 709 Bytes
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
{
"name": "brain-storm",
"version": "1.0.0",
"private": true,
"description": "Brain-Storm - Blockchain Education Platform on Stellar",
"workspaces": [
"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:load": "./scripts/load-test.sh",
"prepare": "husky install"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"k6": "^0.50.0",
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"husky": "^9.0.0"
}
}