-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "@turbothinh/ts-babel-webpack-boilerplate",
"version": "1.0.0",
"description": "TypeScript with Babel and Webpack including absolute path resolver",
"license": "MIT",
"scripts": {
"typecheck": "tsc --noEmit",
"typecheck:watch": "yarn typecheck -- --watch",
"test": "jest",
"test:watch": "yarn --watch",
"build": "webpack",
"build:watch": "webpack --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:clean": "rm -rf dist",
"start": "nodemon dist/main.js",
"dev": "run-p build:watch start"
},
"dependencies": {
"node-fetch": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/node-fetch": "^3.0.3",
"babel-loader": "^8.2.3",
"babel-plugin-module-resolver": "^4.1.0",
"clean-webpack-plugin": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"jest": "^27.4.7",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"source-map-loader": "^3.0.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.1"
}
}