-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "noex-cli",
"version": "2.0.3",
"description": "",
"main": "./dist/index.js",
"bin": {
"noex": "./dist/index.js"
},
"type": "module",
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"start:windows": "nodemon --watch 'src/**/*.ts' --exec \"npx ts-node\" src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"local": "sudo npm i -g && pizza",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/figlet": "^1.5.5",
"@types/gradient-string": "^1.1.2",
"@types/inquirer": "^9.0.3",
"boxen": "^7.0.2",
"chalk": "^4.1.2",
"clear": "^0.1.0",
"commander": "^10.0.1",
"figlet": "^1.6.0",
"gradient-string": "^2.0.2",
"inquirer": "^9.1.5",
"nanospinner": "^1.1.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/node": "^18.15.11",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}