-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 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
50
51
52
53
54
55
{
"name": "@hemnet/node-assignment",
"version": "1.0.0",
"engines": {
"node": ">=22.0.0"
},
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --runInBand",
"start": "ts-node index.ts",
"dev": "ts-node-dev --respawn --transpile-only index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"njwt": "^2.0.1",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7",
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"xo": "^0.59.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"xo": {
"import/extensions": false,
"import/no-cycle": false
}
}