-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.54 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.54 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "lean-ts",
"version": "0.1.0",
"main": "./dist/main.js",
"scripts": {
"build": "tsc",
"build:watch": "npm run build -- --watch",
"start": "npm run build && node ./dist/main.js",
"start:watch": "ts-node-dev --no-notify --exit-child --respawn ./src/main.ts",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:eslint": "node --experimental-vm-modules node_modules/jest/bin/jest.js -c jest.config.eslint.js",
"test:learning": "npm run test -- -c ./jest.config.learning.js",
"test:learning:watch": "npm run test:learning -- --watch",
"test:unit": "npm run test -- -c ./jest.config.unit.js",
"test:unit:watch": "npm run test:unit -- --watch",
"test:all": "npm run test:eslint && npm run test:learning && npm run test:unit"
},
"engines": {
"node": ">=22"
},
"author": "Hoang Pham",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.26.0",
"@faker-js/faker": "^9.9.0",
"@jest/globals": "^30.0.4",
"@stylistic/eslint-plugin": "^5.2.3",
"@types/lodash": "^4.17.20",
"@types/node": "^24.2.1",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"dependencies": {
"lodash": "^4.17.21",
"reflect-metadata": "^0.2.2",
"typedi": "^0.10.0"
}
}