forked from ibywaks/cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "cookbook",
"version": "1.0.0",
"description": "A simple recipe app using typescript and sequelize",
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage",
"dev": "nodemon src/index.ts",
"build": "npx tsc"
},
"keywords": [
"sequelize",
"typescript",
"food",
"recipes",
"cache",
"speed",
"microdiff"
],
"author": "ibywaks",
"license": "ISC",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"microdiff": "^1.3.0",
"mysql2": "^2.2.5",
"node-cache": "^5.1.2",
"sequelize": "^6.6.4"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.171",
"@types/node": "^15.12.4",
"@types/node-cache": "^4.2.5",
"@types/supertest": "^2.0.11",
"eslint": "^7.30.0",
"jest": "^27.2.4",
"nodemon": "^2.0.7",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}