-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 949 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
31
32
{
"name": "group-x",
"version": "0.0.2",
"description": "Student Project, book sharing library application. Basic instructions to run the app: Database is serialized upon app initiation, although sql file can still be used. 'npm start' for standard run, 'npm run start:dev' can be used for development watch. Docker method also applies",
"main": "main.js",
"scripts": {
"start": "node main.js",
"start:dev": "nodemon main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aniqa-byte/Group-X.git"
},
"keywords": [
"JavaScript",
"Node.js",
"Express.js",
"SQLite",
"Angular.js"
],
"author": "AA; CLC; KM; CN",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aniqa-byte/Group-X/issues"
},
"homepage": "https://github.com/aniqa-byte/Group-X#readme",
"dependencies": {
"express": "^4.17.1",
"nodemon": "^2.0.7",
"sqlite3": "^5.0.2"
}
}