-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "cache-api",
"version": "1.0.0",
"description": "The service has some endpoints to interact with cache data.",
"main": "app.js",
"scripts": {
"dev": "NODE_ENV=development nodemon ./src/server.ts",
"start": "NODE_ENV=production rm -rf dist && npm run build && node ./dist/server.js",
"test": "NODE_ENV=test jest --watchAll --verbose --runInBand",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhadikz/Cache-API.git"
},
"author": "Mohammad Hadi Karamzadeh",
"license": "ISC",
"bugs": {
"url": "https://github.com/mhadikz/Cache-API/issues"
},
"homepage": "https://github.com/mhadikz/Cache-API#readme",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.2",
"mongoose": "^6.1.3",
"randomstring": "^1.2.1",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/randomstring": "^1.1.8",
"nodemon": "^2.0.15",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@types/supertest": "^2.0.11",
"babel-jest": "^27.4.4",
"jest": "^27.4.4",
"supertest": "^6.1.6"
}
}