forked from breuerfelix/jinsta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.45 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "jinsta",
"version": "0.0.23",
"description": "javascript + instagram + flow",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"jinsta": "dist/cli.js"
},
"scripts": {
"start": "npm run prod",
"build": "babel src -d dist --extensions \".ts,.js\" --ignore '**/*.test.*' --ignore '**/__test__/**/*'",
"prod": "node dist/index.js",
"dev": "babel-node index.ts --extensions \".ts,.js\"",
"dev:cli": "babel-node src/cli.ts --extensions \".ts,.js\"",
"watch": "nodemon --ext js,graphql --watch src --exec npm run dev",
"watch:docker": "npm run watch -- --legacy-watch",
"test": "npm run lint && npm run type-check && npm run build",
"lint": "eslint --config .eslintrc.yml --ext ts,js src",
"lint:fix": "npm run lint -- --fix",
"build:types": "tsc --emitDeclarationOnly",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"clean:cache": "rm -rf ./node_modules/.cache/@babel",
"deploy": "np --no-release-draft --no-publish",
"deploy:beta": "np prerelease --tag=beta --no-release-draft --no-publish --any-branch"
},
"pre-commit": [
"lint:fix",
"lint",
"type-check"
],
"repository": "github:breuerfelix/jinsta",
"keywords": [],
"author": "Felix Breuer",
"license": "MIT",
"bugs": {
"url": "https://github.com/breuerfelix/jinsta/issues"
},
"files": [
"dist/"
],
"homepage": "https://github.com/breuerfelix/jinsta#readme",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/dotenv": "^6.1.1",
"@types/inquirer": "^6.5.0",
"@types/node": "^12.7.12",
"@types/yargs": "^13.0.3",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"babel-eslint": "^10.0.3",
"dotenv": "^8.2.0",
"eslint": "^6.5.1",
"nodemon": "^1.19.3",
"np": "^5.1.1",
"pre-commit": "^1.2.2",
"typescript": "^3.6.4"
},
"dependencies": {
"@babel/runtime": "^7.6.3",
"inquirer": "^7.0.0",
"instagram-private-api": "^1.31.0",
"rxjs": "^6.5.3",
"unistore": "^3.5.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.2.1",
"yargs": "^14.2.0"
}
}