-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 946 Bytes
/
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
{
"private": true,
"contributors": [
"Yvann Boucher <[email protected]>"
],
"engines": {
"node": ">=18.12"
},
"type": "module",
"sideEffects": false,
"scripts": {
"format": "prettier --cache --write ./src/**/*.ts",
"compile": "tsc --build",
"compile:watch": "yarn run compile --watch",
"test": "yarn node --no-warnings --experimental-vm-modules $(yarn bin jest) --no-cache",
"test:watch": "yarn run test --watchAll",
"start": "yarn && yarn compile && yarn node ./build/entrypoint.js"
},
"devDependencies": {
"@swc/core": "1.3.26",
"@swc/jest": "0.2.24",
"@tsconfig/node18": "1.0.1",
"@types/express": "^4.17.15",
"@types/jest": "29.2.5",
"@types/node": "18.11.18",
"@yarnpkg/sdks": "3.0.0-rc.35",
"jest": "29.3.1",
"prettier": "2.8.2",
"typescript": "4.9.4"
},
"packageManager": "[email protected]",
"dependencies": {
"express": "^4.18.2"
}
}