-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.55 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.55 KB
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": "strix-backend",
"version": "1.0.0",
"description": "Strix Backend Application with Express",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && babel ./ --out-dir dist --copy-files --ignore node_modules,.github,.git,test",
"lint": "eslint .",
"db:create": "sequelize db:create",
"db:drop": "sequelize db:drop",
"migrate": "node scripts/create-migration.js",
"migrate:reset": "sequelize db:migrate:undo:all && sequelize db:migrate",
"seed": "sequelize db:seed:all",
"seed:reset": "sequelize db:seed:undo:all && sequelize db:seed:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CleanCodeIt/strix-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CleanCodeIt/strix-backend/issues"
},
"homepage": "https://github.com/CleanCodeIt/strix-backend#readme",
"dependencies": {
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.15.6",
"sequelize": "^6.37.7",
"sequelize-cli": "^6.6.3",
"sqlite3": "^5.1.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"umzug": "^3.8.2"
},
"devDependencies": {
"@babel/cli": "^7.27.1",
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.1",
"eslint": "^8.57.1",
"nodemon": "^3.1.10",
"rimraf": "^5.0.10"
}
}