-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 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
32
33
34
35
36
37
38
39
{
"name": "@lawlzer/puppeteer-helpers",
"version": "2.0.3",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"start": "ts-node-dev --respawn --transpile-only .\\src\\index.ts",
"build": "rimraf ./dist && tsc",
"webpack": "rimraf ./webpacked.js && webpack --config webpack.config.ts",
"clean": "rimraf ./dist"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/ms": "^0.7.31",
"@types/node": "^18.7.13",
"@types/puppeteer": "^5.4.6",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/parser": "^5.35.1",
"babel-loader": "^8.2.5",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1"
},
"dependencies": {
"@lawlzer/helpers": "^3.0.5",
"ms": "^2.1.3",
"puppeteer": "^17.0.0"
}
}