-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.44 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
71
72
73
74
75
{
"name": "point-of-sale",
"version": "1.0.0",
"description": "A simple CRUD application to handle transactions.",
"main": "./build/index.js",
"type": "module",
"scripts": {
"build:serve": "npm run build && node --experimental-specifier-resolution=node --loader=./loader.mjs build/index.js",
"serve": "node --experimental-specifier-resolution=node --loader=./loader.mjs build/index.js",
"start": "tsx --tsconfig ./tsconfig.json src/index.ts",
"dev": "nodemon --config restart.json",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint ./src/ --ext ts,js",
"test": "jest",
"test:clear": "jest --clearCache",
"lint:fix": "eslint ./src/ --ext ts,js --fix",
"format": "prettier 'src/**/*.{ts,json}' --write",
"docker:start:dev": "docker compose -f 'docker-compose.yml' up --build --force-recreate -d",
"docker:stop:dev": "docker compose -f 'docker-compose.yml' down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lumiere-Lodi/point-of-sale.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lumiere-Lodi/point-of-sale/issues"
},
"homepage": "https://github.com/Lumiere-Lodi/point-of-sale#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-html-reporter": "^3.10.2",
"nodemon": "^3.1.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
},
"dependencies": {
"@sequelize/core": "^7.0.0-alpha.37",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.17.43",
"@types/jsonwebtoken": "^9.0.6",
"@types/jws": "^3.2.9",
"@types/node": "^20.11.25",
"@types/uuid": "^9.0.8",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"fs": "^0.0.1-security",
"http": "^0.0.1-security",
"http-status": "^1.7.4",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"nock": "^13.5.4",
"node-mocks-http": "^1.14.1",
"path": "^0.12.7",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.1",
"swagger-ui-express": "^5.0.0",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"uuid": "^9.0.1",
"winston": "^3.12.0",
"zod": "^3.22.4"
}
}