-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 793 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "squares",
"version": "1.0.0",
"description": "Digital football squares (or whatever use case you may have for digital squares).",
"scripts": {
"client": "cd client && npm start",
"server": "nodemon ./server.js",
"deploy": "cd client && npm run deploy",
"dynamo": "cd /Users/williamcougan/workspace/dynamodb_local_latest && java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -sharedDb"
},
"repository": {
"type": "git",
"url": "git+https://github.com/billycougz/squares.git"
},
"author": "William Cougan <william.cougan@gmail.com> (https://williamcougan.com/)",
"homepage": "https://github.com/billycougz/squares#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"nodemon": "^2.0.20"
}
}