-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.71 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
48
49
50
51
52
{
"name": "quick-start-node",
"version": "1.0.0",
"description": "A template repository to kickstart your Node.js projects with a clean and organized structure. This repository serves as a starting point for your new projects, helping you focus on building great applications right from the beginning.",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint --fix index.js src/**/*.js tests/**/*.js",
"start": "(export NODE_ENV=production || set NODE_ENV=production) && node index.js",
"dev": "(export NODE_ENV=development || set NODE_ENV=development) && nodemon index.js",
"test": "(export NODE_ENV=test || set NODE_ENV=test) && jest",
"test:unit": "(export NODE_ENV=test || set NODE_ENV=test) && node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=tests/unit",
"test:integ": "(export NODE_ENV=test || set NODE_ENV=test) && node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=tests/integration"
},
"keywords": [
"javascript",
"open-source",
"boilerplate",
"template",
"node-js",
"express-js",
"starter-template",
"api",
"web-development"
],
"author": "Aimal Khan",
"license": "MIT",
"devDependencies": {
"eslint": "^8.47.0",
"eslint-plugin-unicorn": "^48.0.1",
"jest": "^29.6.2",
"supertest": "^6.3.3"
},
"dependencies": {
"bcrypt": "^5.1.0",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"mongoose": "^7.4.3",
"nodemailer": "^6.9.4",
"pug": "^3.0.2",
"winston": "^3.10.0"
},
"jest": {
"setupFilesAfterEnv": [
"./tests/setup.js"
],
"transform": {}
}
}