-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 764 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 764 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
28
29
{
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"name": "marketplace",
"scripts": {
"build": "npm run build --workspaces --if-present",
"prebuild": "npm run prebuild --workspaces --if-present",
"pretest": "npm run prebuild --workspaces --if-present",
"start": "npm start --workspaces --if-present",
"test": "npm test --workspaces --if-present"
},
"type": "module",
"workspaces": [
"src/marketplace_frontend"
],
"dependencies": {
"@dfinity/agent": "^1.2.0",
"@dfinity/auth-client": "^1.2.0",
"@dfinity/identity": "^1.2.0",
"ic-use-actor": "^0.0.9",
"ic-use-internet-identity": "^0.0.10",
"react-device-detect": "^2.2.3"
},
"devDependencies": {
"@types/node": "^20.12.7"
}
}