-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "forkedflavors",
"version": "0.0.1",
"description": "A recipe-sharing platform where users can share creations, post comments, and fork recipes to create unique variations.",
"main": "./src/server.js",
"scripts": {
"prepare": "husky",
"pretest": "npx eslint .",
"test": "jest --verbose --coverage --silent=true",
"start": "node ./src/server.js",
"dev": "nodemon ./src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdf18/ForkedFlavors.git"
},
"author": "Jacob Flint",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdf18/ForkedFlavors/issues"
},
"homepage": "https://github.com/jdf18/ForkedFlavors#readme",
"dependencies": {
"bootstrap": "^5.3.3",
"dotenv": "^16.4.7",
"eslint-plugin-jest": "^28.9.0",
"express": "^4.21.2",
"express-session": "^1.18.1",
"nodemon": "^3.1.9",
"path": "^0.12.7",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"jest": "^29.7.0"
}
}