-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.62 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": "@addtodoist/settings-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": "2.0.0",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/exec": "6.0.3",
"@types/crypto-js": "4.1.1",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"commitizen": "4.2.6",
"concurrently": "7.6.0",
"cz-conventional-changelog": "3.3.0",
"esbuild": "0.16.12",
"eslint": "8.31.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"localtunnel": "^2.0.2",
"nodemon": "2.0.20",
"semantic-release": "19.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"dependencies": {
"@bugsnag/js": "7.18.0",
"@doist/todoist-api-typescript": "2.1.2",
"@doist/ui-extensions-core": "^4.1.1",
"crypto-js": "4.1.1",
"dotenv": "16.0.3",
"mongoose": "6.8.2"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/AddTodoist/settings-server.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}