-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 852 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 852 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
27
28
29
30
31
32
33
34
35
36
37
{
"name": "ts-node-boilerplate",
"version": "0.0.0",
"main": "src/index.js",
"author": {
"name": "모바일팀 / Brown",
"email": "brown.yoo@gbike.io"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"prestart": "yarn build",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"dev": "nodemon",
"test": "jest"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"axios": "^1.7.9",
"dayjs": "^1.11.13",
"es-toolkit": "^1.30.1",
"inquirer": "^12.3.0",
"picocolors": "^1.1.1",
"tsconfig-paths": "^4.2.0",
"yup": "^1.6.1",
"zustand": "^5.0.2"
}
}