-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 905 Bytes
/
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
{
"name": "munchies",
"version": "1.0.0",
"description": "Fastify POS (Point-of-sale) app providing transaction, product and user management.",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest --runInBand",
"start": "node build/index.js",
"dev": "npm run build && npm test && npm run start"
},
"keywords": [],
"author": "Christiaan Venter",
"license": "ISC",
"dependencies": {
"@fastify/ajv-compiler": "^3.6.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"fastify": "^4.28.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.10.1",
"sequelize": "^6.37.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}