-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.32 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
{
"name": "ts-cli",
"packageManager": "[email protected]",
"version": "0.0.1",
"description": "A template to develop cli apps using TS, Webpack, Babel and Nodemon",
"main": "src/index.js",
"scripts": {
"build": "webpack --config=webpack.config.js",
"dev": "webpack --watch",
"rimraf": "rimraf node_modules",
"test": "jest --coverage=true",
"test:watch": "jest --coverage=true --watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"babel-loader": "^9.1.3",
"fork-ts-checker-webpack-plugin": "^9.0.0",
"jest": "^29.7.0",
"nodemon-webpack-plugin": "^4.8.2",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"source-map-support": "^0.5.21"
},
"engines": {
"node": ">=18.17.1"
}
}