forked from a-tarasyuk/webpack-typescript-babel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.01 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
{
"name": "webpack-typescript-babel",
"version": "1.0.0",
"description": "A sample setup using Webpack and Babel to build TypeScript code, and using TypeScript for type-checking.",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "webpack --mode=production",
"build": "npm run build:types && npm run build:js"
},
"author": {
"name": "Oleksandr T.",
"email": "oleksandr.tarasiuk@outlook.com"
},
"main": "dist/bundle.js",
"types": "dist/types/index.d.ts",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"babel-loader": "8.2.3",
"fork-ts-checker-webpack-plugin": "7.2.1",
"typescript": "4.6.2",
"webpack": "5.70.0",
"webpack-cli": "4.9.2"
}
}