-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
{
"name": "tokyo-travelkit-backend",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"build": "bash build.sh",
"import": "tsc && node build/import.js",
"api": "npm run build && node build/index.js",
"buildGraph": "rm -rf cache/ && mkdir cache/ && tsc && node build/buildGraph.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/wtongze/tokyo-travelkit-backend.git"
},
"author": "Tongze Wang",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/wtongze/tokyo-travelkit-backend/issues"
},
"homepage": "https://github.com/wtongze/tokyo-travelkit-backend#readme",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/lodash": "^4.14.173",
"@types/node": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"dependencies": {
"@types/express": "^4.17.13",
"axios": "^0.21.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"geolib": "^3.3.1",
"lodash": "^4.17.21",
"node-addon-api": "^4.2.0",
"sequelize": "^6.6.5",
"sqlite3": "^4.2.0"
}
}