-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 969 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 969 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
32
33
34
35
36
37
38
{
"name": "mact6340project",
"version": "1.0.0",
"description": "A personal NFT mint for an artist",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx nodemon index.js",
"start": "node index.js",
"build:digitalocean": "npm install --production=false && npm run build && npm ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgsmith7/MACT6340Project.git"
},
"engines": {
"node": "21.4.0",
"npm": "10.2.5"
},
"author": "David G. Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/dgsmith7/MACT6340Project/issues"
},
"homepage": "https://github.com/dgsmith7/MACT6340Project#readme",
"devDependencies": {
"nodemon": "^3.0.3"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.2",
"ejs": "^3.1.9",
"express": "^4.18.2",
"mysql2": "^3.7.1",
"nodemailer": "^6.9.8"
}
}