-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.13 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
42
43
44
45
46
47
48
49
{
"name": "qorelanguage-org",
"version": "1.0.0",
"description": "",
"main": "./src/index.ts",
"scripts": {
"start": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astghikmkrtchyan12/qorelanguage-org.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/astghikmkrtchyan12/qorelanguage-org/issues"
},
"homepage": "https://github.com/astghikmkrtchyan12/qorelanguage-org#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"@/(.*)": "<rootDir>/src/$1"
}
},
"dependencies": {
"@qoretechnologies/qorus-toolkit": "^0.1.0",
"@types/express": "^4.17.21",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.3"
}
}