-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 KB
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
{
"name": "boilerplate-com-jest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "npx tsx watch ./src/index.ts",
"start": "node ./dist/index.js",
"build": "tsc --build tsconfig.build.json && tsup src --minify",
"prettier": "prettier --write ./src/**/*.ts",
"eslint": "npx eslint ./src",
"test": "jest --no-cache --watch-all --coverage",
"test:ci": "jest --no-cache --coverage"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.1.1",
"@types/puppeteer": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"tsup": "^6.7.0",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
},
"dependencies": {
"puppeteer": "^21.3.8"
}
}