-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "kokopelli_backend",
"version": "3.0.0",
"description": "The backend connecting the app to the web client",
"main": "dist/app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/KokopelliMusic/backend.git"
},
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node -r ts-node/register ./src/app.ts",
"dev": "ts-node-dev src/app.ts"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
},
"author": "Nierot",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/KokopelliMusic/backend/issues"
},
"homepage": "https://github.com/KokopelliMusic/backend#readme",
"devDependencies": {
"@types/node": "^14.17.9",
"eslint": "^7.10.0",
"eslint-plugin-import": "^2.22.1",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"dependencies": {
"fastify": "^3.20.1",
"fastify-cors": "^6.0.2",
"fastify-swagger": "^4.8.4",
"firebase-admin": "^9.11.0",
"pino-pretty": "^5.1.3",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"typeorm": "^0.2.37"
}
}