-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "sobsessions",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest --config=jest.config.cjs",
"start": "node src/index.js",
"dev": "nodemon ./src/index.js",
"seed": "node ./src/database/seed.js",
"prettier": "prettier --write \"src/**/*.js\"",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac27/sobSessions.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac27/sobSessions/issues"
},
"homepage": "https://github.com/fac27/sobSessions#readme",
"engines": {
"node": "18.16.0"
},
"volta": {
"node": "18.16.0"
},
"dependencies": {
"better-sqlite3": "^8.4.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@flydotio/dockerfile": "^0.2.14",
"eslint": "^8.42.0",
"eslint-config-kentcdodds": "^20.5.0",
"eslint-plugin-prettier": "^4.2.1",
"esm": "^3.2.25",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"supertest": "^6.3.3"
}
}