-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "@tsukuba-shinkan/shinkan-api",
"version": "0.0.0",
"description": "Server-side API for Shinkan Web, University of Tsukuba",
"main": "dist/index.js",
"private": true,
"scripts": {
"test": "jest",
"start": "node ./dist/index.js",
"build": "tsc",
"dev": "ts-node-dev --project tsconfig.json ./src/index.ts",
"lint": "eslint --ext ts,js .",
"lintfix": "eslint --ext ts,js --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsukuba-shinkan/shinkan-web-api.git"
},
"keywords": [
"express"
],
"author": "Kazumi Inada <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsukuba-shinkan/shinkan-web-api/issues"
},
"homepage": "https://github.com/tsukuba-shinkan/shinkan-web-api#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.31",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase-admin": "^9.5.0",
"mysql2": "^2.2.5"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.3",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
}
}