-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 972 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
{
"name": "fizzy",
"version": "1.0.0",
"description": "visualization tool",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "node src/server/server.js",
"lint": "eslint src/**/*.js --fix",
"initadmin": "node src/scripts/init_admin.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/rsalz47/fizzy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rsalz47/fizzy/issues"
},
"homepage": "https://github.com/rsalz47/fizzy#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^6.0.0",
"memorystore": "^1.6.7",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.8.0"
},
"devDependencies": {
"eslint": "^8.25.0",
"eslint-config-xo": "^0.42.0"
},
"engines": {
"node": "16.17.*",
"npm": "8.15.*"
}
}