-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "rcz-portfolio-script",
"version": "2.0.1",
"main": "index.js",
"author": "Eric Zorn",
"license": "MIT",
"scripts": {
"build": "rimraf dist/ && tsc --pretty",
"bundle": "npm run build && pkg dist/main.js --output=\"rcz-portfolio\"",
"clean": "nexe dist/main.js --clean",
"start": "node dist/main.js",
"start:dev": "npm run generate:types && ts-node src/main.ts --watch",
"start:bundle": "npm run bundle && ./rcz-portfolio",
"generate:types": "ts-node scripts/generate-swagger-types.ts"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chalk": "^2.2.0",
"@types/inquirer": "^7.3.3",
"@types/json2csv": "^5.0.3",
"@types/nodemon": "^1.19.1",
"@types/rimraf": "^3.0.1",
"nodemon": "^2.0.12",
"pkg": "^5.3.1",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.2",
"inquirer": "^8.1.2",
"json2csv": "^5.0.6",
"openapi-typescript": "^4.0.2",
"ora": "^5.4.1",
"rimraf": "^3.0.2"
}
}