-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1.02 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
{
"name": "sample",
"version": "1.0.0",
"description": "Starter kit with webpack",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"dependencies": {
"body-parser": "^1.20.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"scripts": {
"test": "jest --verbose --logHeapUsage",
"build": "tsup index.ts --format cjs,esm --dts",
"start": "ts-node index.ts"
},
"repository": {
"type": "git",
"url": "git+https://framagit.org/patjennings/resources-starter"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://framagit.org/patjennings/resources-starter"
},
"homepage": "https://framagit.org/patjennings/resources-starter#README"
}