forked from CSE-25/quick_start_express
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 683 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 683 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
{
"name": "qse",
"version": "1.0.4-beta",
"description": "A simple CLI tool to generate Express servers from multiple available templates.",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "node bin/index.js init",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"author": "Abhinav Ramakrishnan, Ashwin Narayanan S",
"license": "ISC",
"bin": "./bin/index.js",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"nanospinner": "^1.1.0"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^7.0.0",
"express": "^4.21.2"
}
}