-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "todo-list",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist/",
"build": "npm run clean && npx tsc",
"start": "npm run build && node dist/server.js",
"test": "jasmine",
"dev": "nodemon src/server.ts",
"format": "prettier --config ./.prettierrc --write \"src/**/*.{ts,js}\"",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:down": "npx sequelize-cli db:migrate:undo",
"migrate:up:test": "npx sequelize-cli db:migrate --env test",
"migrate:down:test": "npx sequelize-cli db:migrate:undo --env test"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"dayjs": "^1.11.13",
"express": "^4.21.2",
"http-status-codes": "^2.3.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.1",
"pino": "^9.5.0",
"sequelize": "^6.37.5",
"todo-list": "file:"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/jasmine": "^5.1.5",
"@types/joi": "^17.2.2",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.2",
"@types/pg": "^8.11.10",
"@types/pino": "^7.0.4",
"@types/pino-pretty": "^4.7.5",
"@types/sequelize": "^4.28.20",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"dotenv": "^16.4.7",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"jasmine": "^5.5.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^3.1.7",
"pino-pretty": "^13.0.0",
"prettier": "^3.4.2",
"sequelize-cli": "^6.6.2",
"supertest": "^7.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}