-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 845 Bytes
/
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
{
"name": "veverka-backend",
"version": "0.0.1",
"description": "Backend for the veverka project",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MicrosoftSTC/veverka-backend.git"
},
"author": "Microsoft STC",
"license": "MIT",
"bugs": {
"url": "https://github.com/MicrosoftSTC/veverka-backend/issues"
},
"homepage": "https://github.com/MicrosoftSTC/veverka-backend#readme",
"dependencies": {
"express": "^4.17.1",
"express-session": "^1.17.1"
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"nodemon": "^2.0.4"
}
}