-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 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
57
58
{
"name": "@3rdplanet/framework-x",
"version": "4.5.1",
"description": "Your Accelerated Path to API Creation",
"main": "app/server.js",
"scripts": {
"start": "nodemon",
"test": "jest",
"prepare": "husky install",
"lint": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/3rd-planet/framework-x.git"
},
"homepage": "https://www.frameworkx.info/",
"author": "msamgan",
"license": "ISC",
"dependencies": {
"@3rdplanet/x-core": "/Users/msamgan/Projects/boilerplate/x-core",
"chalk": "^4.1.2",
"commander": "^9.5.0",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-validator": "^6.15.0",
"figlet": "^1.6.0",
"inquirer": "^8.2.6",
"loading-cli": "^1.1.0",
"simple-node-logger": "^21.8.12"
},
"devDependencies": {
"husky": "^7.0.4",
"jest": "^27.5.1",
"nodemon": "^2.0.22",
"prettier": "^3.0.3",
"supertest": "^6.3.3"
},
"keywords": [
"api",
"expressjs",
"nodejs",
"backend",
"server",
"node server"
],
"bin": {
"@3rdplanet/framework-x": "bin/installer.js"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false,
"printWidth": 112
}
}