-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 739 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 739 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
31
{
"name": "voting-prototype",
"version": "0.1.0",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev:up": "bash ./scripts/dev-up.sh",
"dev:up:reset": "bash ./scripts/dev-up.sh --reset",
"start:all": "concurrently \"npm:server\" \"npm:client\"",
"server": "cd backend && npm start",
"client": "cd frontend && npm start",
"test": "cd backend && npm test || true"
},
"devDependencies": {
"baseline-browser-mapping": "^2.9.19",
"concurrently": "^8.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"tar": "^7.5.7"
},
"type": "module",
"overrides": {
"qs": "^6.14.1",
"@remix-run/router": "^1.23.2",
"form-data": "^4.0.1"
}
}