-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 762 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 762 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
30
{
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"name": "app",
"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/app_frontend"
],
"dependencies": {
"@dfinity/agent": "^2.0.0",
"@dfinity/auth-client": "^2.0.0",
"@sveltejs/adapter-node": "^5.2.2",
"@sveltejs/adapter-static": "^3.0.4",
"pako": "^2.1.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@melt-ui/pp": "^0.3.2",
"@melt-ui/svelte": "^0.83.0"
}
}