-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.93 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
60
61
62
63
{
"name": "@rove-team/gitsheet",
"version": "1.0.1",
"description": "This project is an gitlab issue handler",
"main": "./dist/src/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"tsc": "rm -rf dist && tsc --project ./tsconfig.publish.json",
"dts:bundle": "dts-bundle-generator -o ./dist/index.d.ts ./dist/src/index.js",
"dts:publish": "npm run tsc && npm run dts:bundle",
"prepublishOnly": "npm run dts:publish",
"tsc:server": "tsc --project ./tsconfig.server.json --outDir server-dist",
"build:prod": "npm run tsc:server",
"build:dev": "ts-node --project ./tsconfig.server.json ./example/example.ts",
"up": "node ./server-dist/example/example.js",
"dev": "nodemon -e ts -w ./example -x npm run build:dev"
},
"author": {
"name": "Rove Team Developers",
"email": "[email protected]",
"url": "https://roveteam.com"
},
"contributors": [
{
"name": "Saeed Habibi",
"email": "[email protected]"
},
{
"name": "Hamidreza Amini",
"email": "[email protected]",
"url": "http://hramini.ir"
}
],
"repository": {
"type": "git",
"url": "https://github.com/MarkItAsDone/gitsheet"
},
"keywords": ["typescript", "git", "issue", "spreadsheet"],
"license": "MIT",
"dependencies": {
"@rove-team/requester": "1.0.0",
"@types/google-spreadsheet": "3.0.2",
"google-spreadsheet": "3.1.15",
"moment": "2.29.1",
"node-schedule": "2.0.0"
},
"devDependencies": {
"@types/dotenv": "8.2.0",
"@types/moment": "2.13.0",
"@types/node-schedule": "1.3.1",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"dotenv": "8.2.0",
"dts-bundle-generator": "5.7.0",
"eslint": "7.21.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"nodemon": "2.0.7",
"ts-node": "9.1.1",
"typescript": "4.2.3"
}
}