-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "tcc_backend",
"version": "1.0.0",
"main": "src/server.ts",
"license": "MIT",
"scripts": {
"knex": "./node_modules/.bin/knex --knexfile src/database/knexfile.ts",
"build": "tsc",
"latest": "yarn knex migrate:latest",
"dev": "tsnd --transpile-only --respawn --ignore-watch node_modules src/server.ts",
"start": "node dist/server.js"
},
"dependencies": {
"@mapbox/mapbox-sdk": "^0.12.1",
"@turf/helpers": "^6.3.0",
"bcrypt": "^5.0.1",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"firebase-admin": "^9.7.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.4",
"pg": "^8.5.1",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.1",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-fileupload": "^1.1.6",
"@types/jsonwebtoken": "^8.5.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
}
}