-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
53
54
55
56
{
"name": "nodexp-skeleton",
"version": "0.0.1",
"description": "Advance nodejs and expressjs skeleton for enterprise level software",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"dev": "nodemon src/server.ts"
},
"dependencies": {
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"mongoose": "^6.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okNeeraj/nodexp-skeleton.git"
},
"bugs": {
"url": "https://github.com/okNeeraj/nodexp-skeleton/issues"
},
"homepage": "https://github.com/okNeeraj/nodexp-skeleton#readme",
"keywords": [
"nodejs",
"expressjs",
"enterprise",
"enterprise",
"mongodb",
"mongoose",
"software",
"skeleton",
"business",
"logic",
"node",
"boilerplate"
],
"author": "Neeraj Singh",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^2.0.19",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}