-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "calendarcache",
"version": "0.2.4",
"author": "mnerv",
"description": "calendar cache server api.",
"main": "build/app.js",
"private": true,
"scripts": {
"watch": "tsc -w",
"dev": "nodemon --watch './build/**/*.js' --exec node .",
"test:eslint": "eslint src/ --ext .ts --ext .js",
"fix:eslint": "eslint --fix src/ --ext .ts --ext .js",
"start": "NODE_ENV=production node .",
"build": "tsc -p tsconfig.json",
"clean": "rimraf build *.tsbuildinfo *.log",
"clean:data": "rimraf data",
"clean:db": "rimraf data/*.sqlite",
"clean:secret": "rimraf data/*.token data/*.secret",
"clean:calendar": "rimraf data/ics/* data/json/*"
},
"repository": {
"type": "git",
"url": "[email protected]:mnerv/calendarcache.git"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/ioredis": "^4.28.10",
"@types/jsdom": "^16.2.15",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.22.0",
"eslint-plugin-json": "^3.1.0",
"nodemon": "^2.0.19",
"pino-pretty": "^8.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.2"
},
"dependencies": {
"@fastify/auth": "^3.0.2",
"@fastify/cors": "^8.1.0",
"@fastify/swagger": "^7.4.1",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"consola": "^2.15.3",
"dotenv": "^16.0.1",
"fastify": "^4.5.3",
"fp-ts": "^2.12.2",
"ics": "^2.37.0",
"io-ts": "^2.2.17",
"ioredis": "^5.2.3",
"jsdom": "^19.0.0",
"jsonwebtoken": "^8.5.1",
"nanoid": "^4.0.0",
"reflect-metadata": "^0.1.13"
}
}