-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "t33n-ang5t",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node --test",
"start": "node src/index.js",
"dev": "nodemon ./src/index.js",
"seed": "DB_FILE=db.sqlite node ./src/database/seed.js",
"prettier": "prettier --write \"src/**/*.js\"",
"lint": "npx eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac27/t33n-ang5t.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac27/t33n-ang5t/issues"
},
"homepage": "https://github.com/fac27/t33n-ang5t#readme",
"volta": {
"node": "18.16.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"better-sqlite3": "^8.4.0",
"cookie-parser": "^1.4.6",
"express": "^4.18.2"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.2.7",
"eslint": "^8.41.0",
"eslint-config-kentcdodds": "^20.5.0",
"prettier": "^2.8.8",
"dotenv": "^16.0.3",
"chalk": "^5.2.0",
"nodemon": "^2.0.22",
"volta": "^0.0.0"
}
}