-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.09 KB
/
package.json
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
39
40
41
42
43
{
"name": "backend",
"version": "1.0.0",
"description": "backend of unite and conquer",
"main": "server.js",
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0"
},
"scripts": {
"test": "jest --coverage",
"start": "node server.js",
"build": "npm install && cd uniteandconquer && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cis350/project-uniteandconquer.git"
},
"keywords": [
"node",
"express",
"cis350",
"project"
],
"author": "CIS350",
"license": "ISC",
"bugs": {
"url": "https://github.com/cis350/project-uniteandconquer/issues"
},
"homepage": "https://github.com/cis350/project-uniteandconquer#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mongodb": "^4.5.0"
}
}