-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 995 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 995 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
{
"name": "webarcade-server",
"version": "1.0.0",
"description": "Server for GT WebArcade project",
"main": "server.js",
"scripts": {
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GTWebArcade/webarcade-server.git"
},
"author": "GT WebDev",
"license": "ISC",
"bugs": {
"url": "https://github.com/GTWebArcade/webarcade-server/issues"
},
"homepage": "https://github.com/GTWebArcade/webarcade-server#readme",
"dependencies": {
"aws-sdk": "^2.1310.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-webpack-plugin": "^3.2.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.20"
}
}