-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 968 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "pandas-at-rest",
"type": "module",
"version": "1.0.0",
"description": "Pandas at REST - An introduction to Web Development",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"nodemonConfig": {
"ext": "js",
"ignore": [
"public"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tiuipuv/pandas-at-rest.git"
},
"keywords": [
"expressjs",
"web",
"tutorial",
"services",
"pandas"
],
"author": "Jordan Jensen",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tiuipuv/pandas-at-rest/issues"
},
"homepage": "https://github.com/Tiuipuv/pandas-at-rest#readme",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.18.2",
"sqlite3": "^5.1.7",
"ws": "^8.16.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"nodemon": "^3.0.3"
}
}