forked from bettyblocks/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.69 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@betty-blocks/cli",
"version": "23.5.0",
"description": "A Betty Blocks CLI",
"main": "build/index.js",
"author": "Niek Nijland <niek.nijland@bettyblocks.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bettyblocks/cli"
},
"scripts": {
"build": "tsc",
"commit": "commit",
"dev": "./node_modules/.bin/tsc-watch -p tsconfig.build.json",
"lint": "eslint \"src/**\"",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "yarn prettier:base --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "yarn prettier:base --write \"src/**/*.{ts,tsx}\"",
"test": "ava ./__tests__/**/*.test.{ts,tsx}"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier:check",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@commitlint/prompt-cli": "^8.2.0",
"@types/app-root-path": "^1.2.4",
"@types/babel__generator": "^7.0.2",
"@types/babel__traverse": "^7.0.7",
"@types/fs-extra": "^8.0.0",
"@types/node": "^12.6.8",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"app-root-path": "^2.2.1",
"eslint": "^6.8.0",
"husky": "^3.0.5",
"jest": "^25.1.0",
"semantic-release": "^17.0.7",
"ts-jest": "^25.2.1",
"tsc-watch": "^2.2.1",
"typescript": "^3.5.3"
},
"dependencies": {
"@azure/ms-rest-js": "^2.0.4",
"@azure/storage-blob": "^10.3.0",
"@babel/generator": "^7.5.5",
"@babel/parser": "^7.5.5",
"@babel/traverse": "^7.5.5",
"@babel/types": "^7.5.5",
"@betty-blocks/preview": "^1.1.0",
"@hapi/joi": "^16.1.8",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/hapi__joi": "^16.0.0",
"@types/react": "^16.9.9",
"@types/serve-handler": "^6.1.0",
"ava": "^3.7.1",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"fs-extra": "^8.1.0",
"node-fetch": "^2.6.0",
"prettier": "^1.18.2",
"semver": "^6.3.0",
"serve": "^11.1.0",
"serve-handler": "^6.1.2",
"ts-node": "^8.8.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.5.3"
},
"ava": {
"extensions": [
"ts",
"tsx"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
]
},
"resolutions": {
"@types/react": "^16.9.9"
},
"bin": {
"bb": "./build/bb.js"
},
"files": [
"assets/",
"build/"
]
}