-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
59
{
"name": "@addtodoist/dm-server",
"type": "module",
"version": "0.0.0-development",
"scripts": {
"build": "node esbuild.js",
"commit": "cz",
"deploy": "node deploy.js",
"dev": "concurrently 'npm:watch-*'",
"lint": "eslint src/**",
"start": "node dist/index.js",
"watch-compile": "node esbuild-dev.js",
"watch-server": "nodemon dist/index.js"
},
"author": "David Jiménez <[email protected]> (https://dubis.dev)",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@jgoz/esbuild-plugin-typecheck": "3.0.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@types/crypto-js": "4.1.1",
"@types/node": "18.15.11",
"@types/twitter-autohook": "1.7.0",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"commitizen": "4.3.0",
"concurrently": "7.6.0",
"cz-conventional-changelog": "3.3.0",
"esbuild": "0.17.17",
"eslint": "8.38.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"nodemon": "2.0.22",
"semantic-release": "21.0.1",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"dependencies": {
"@addtodoist/twitter-autohook": "2.2.0",
"@bugsnag/js": "7.20.0",
"@doist/todoist-api-typescript": "2.1.2",
"crypto-js": "4.1.1",
"dotenv": "16.0.3",
"mongoose": "6.9.0",
"twitter-api-v2": "1.14.2"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/AddTodoist/dm-server.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}