-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "ski",
"version": "1.0.0",
"main": "index.ts",
"author": "Maximilian Hollis <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc || echo ops",
"start": "tsc; node dist",
"debug": "tsc; node --inspect dist",
"dev": "nodemon --ignore streams/ ./src/index.ts",
"ts-check": "tsc --noEmit"
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/got": "^9.6.12",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.24",
"@typescript-eslint/parser": "^5.10.0",
"cheerio": "^1.0.0-rc.10",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"got": "11.8.3",
"image-size": "^1.0.2",
"luxon": "^3.1.1",
"ml-matrix-convolution": "^1.0.0",
"mongoose": "^6.8.1",
"morgan": "^1.10.0",
"nanoid": "^3.2.0",
"node-cron": "^3.0.2",
"node-webshot": "^1.0.4",
"nodemon": "^2.0.15",
"playwright": "^1.29.1",
"sharp": "^0.31.3",
"socket.io": "^4.5.4",
"ts-node": "^10.4.0",
"typescript": "^4.6.2"
},
"devDependencies": {
"@types/luxon": "^3.1.0",
"@types/node-cron": "^3.0.6",
"@types/sharp": "^0.31.0",
"eslint-config-lemon": "^0.6.6"
}
}