-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.27 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
43
44
45
46
47
48
49
50
51
52
{
"name": "carpincho",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "git+https://github.com/matiasngf/carpincho.git"
},
"license": "ISC",
"main": "dist/index.js",
"files": [
"dist",
"bin"
],
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch"
},
"bin": {
"carpincho": "./bin/index.js"
},
"resolutions": {
"uglify-js": "npm:terser"
},
"devDependencies": {
"@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",
"@types/express": "^4.17.13",
"clean-webpack-plugin": "^4.0.0",
"typescript": "^4.6.3",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"ts-loader": "^9.2.8",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"@babel/core": "^7.17.9",
"@swc/core": "^1.2.171",
"babel-loader": "^8.2.5",
"chalk": "^5.0.1",
"chokidar": "^3.5.3",
"del": "^6.0.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"handlebars": "^4.7.7",
"swc-loader": "^0.2.0",
"webpack": "^5.72.0",
"webpack-node-externals": "^3.0.0",
"webpack-virtual-modules": "^0.4.3",
"yargs": "^17.4.1"
}
}