-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 999 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 999 Bytes
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
{
"name": "pethome",
"version": "1.0.0",
"description": "pethome api",
"main": "index.js",
"scripts": {
"start": "node dist/pethome.bundle.js",
"build": "webpack --mode production",
"dev": "nodemon src/app.ts",
"collections": "node scripts/initCollections.js",
"test:unit": "ENV_FILE=./.env.test jest"
},
"keywords": [
"api"
],
"author": "xavi",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.14",
"bcryptjs": "^2.4.3",
"@types/jest": "^29.2.4",
"@types/supertest": "^2.0.12",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.12.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.9",
"uuid": "^9.0.0",
"webpack-cli": "^5.0.1"
}
}