-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "sustainobles-backend",
"version": "1.0.0",
"description": "Backend service for sustainobles",
"main": "dist/server.js",
"scripts": {
"serve": "tsc -w & nodemon ./dist/server.js",
"preserve": "rimraf dist && npx tsc",
"start": "npm run preserve && pm2 start dist/server.js",
"test": "cross-env NODE_ENV=test jest --testTimeout=5000 --detectOpenHandles",
"pup": "cd ./node_modules/puppeteer && npm i"
},
"author": "onfranciis, Francis Onukwu",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"helmet": "^7.1.0",
"jest": "^29.7.0",
"mongodb": "^6.3.0",
"mongoose": "^8.0.4",
"mustache": "^4.2.0",
"mustache-express": "^1.3.2",
"nodemon": "^3.0.2",
"pm2": "^5.3.0",
"puppeteer": "^21.7.0",
"rimraf": "^5.0.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.11",
"@types/mongoose": "^5.11.97",
"@types/mustache": "^4.2.5",
"@types/mustache-express": "^1.2.5",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.7"
}
}