-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (40 loc) · 1.12 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
{
"name": "node-sandbox",
"version": "1.0.0",
"main": "index.ts",
"engines": {
"node": ">=v20.9.0",
"npm": ">=v10.1.0"
},
"scripts": {
"build": "npm run clean; tsc ",
"build:run": "npm run build; npm start",
"clean": "rm -rf ./dist/* ",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "nodemon",
"start": "ts-node ./src/index.ts",
"test": "jest --watchAll",
"test:silent": "jest --silent",
"test:coverage": "jest --coverage"
},
"dependencies": {
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.12.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
}
}