-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "backend-exercise",
"version": "1.0.0",
"description": "Shine's backend-exercise",
"engines": {
"node": "18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shinetools/backend-exercise.git"
},
"author": "shinetools",
"license": "UNLICENSED",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts .",
"prettify": "prettier-eslint --write \"**/*.ts*\" --list-different",
"start": "nodemon --config nodemon.json",
"test": "jest",
"type-check": "yarn tsc --noEmit"
},
"dependencies": {
"chance": "^1.1.7",
"queue": "^6.0.2",
"sqlite": "^4.2.1",
"sqlite3": "^5.1.6",
"uuid": "^9.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chance": "^1.1.3",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.5.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"prettier-eslint-cli": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}