-
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) · 786 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 786 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": "fairtest",
"version": "1.0.0",
"description": "A secure exam platform with cryptographic features",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"server": "nodemon server/server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install-all": "npm install && npm install --prefix client"
},
"dependencies": {
"@solana/web3.js": "^1.70.0",
"bcrypt": "^5.1.1",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"nodemon": "^3.0.2",
"shamirs-secret-sharing": "^2.0.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
}
}