-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
56
57
58
59
60
61
62
63
{
"name": "liketion",
"version": "1.0.0",
"main": "server.js",
"repository": "https://github.com/badmintoncryer/liketion.git",
"author": "kazuho cryershinozuka",
"license": "MIT",
"scripts": {
"start": "nodemon ./dist/server.js",
"build": "npx tsc",
"build-watch": "npx tsc -w",
"dev": "yarn run build && yarn start",
"prepare": "husky install",
"test": "jest --ci --coverage",
"test:coverage": "yarn test",
"test:badges": "yarn test && jest-coverage-badges"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@types/sqlite3": "^3.1.11",
"app-root-path": "^3.1.0",
"cors": "^2.8.5",
"express": "^4.20.0",
"js-yaml": "^4.1.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.21",
"@types/http-errors": "^2.0.2",
"@types/jest": "^27.5.0",
"@types/morgan": "^1.9.6",
"@types/supertest": "^2.0.16",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"depcheck": "^1.4.7",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.10",
"jest": "^28.1.0",
"jest-coverage-badges": "^1.1.2",
"lint-staged": "^15.2.1",
"nodemon": "^3.0.1",
"prettier": "^3.3.0",
"supertest": "^6.3.3",
"ts-jest": "^28.0.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
}
}