-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
119 lines (119 loc) · 3.27 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@betty-blocks/cli",
"version": "25.102.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}",
"all": "yarn test && yarn lint --fix && yarn prettier:write"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier:check",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-angular": "^15.0.0",
"@commitlint/prompt-cli": "^15.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/app-root-path": "^1.2.4",
"@types/babel__generator": "^7.6.3",
"@types/babel__traverse": "^7.0.7",
"@types/fs-extra": "^8.0.0",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.176",
"@types/node": "^12.6.8",
"@types/promise-sequential": "^1.1.0",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"app-root-path": "^2.2.1",
"ava": "^3.15.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^3.0.5",
"prettier": "^2.5.0",
"semantic-release": "^19.0.3",
"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.16.0",
"@babel/parser": "^7.5.5",
"@babel/traverse": "^7.5.5",
"@babel/types": "^7.5.5",
"@types/adm-zip": "^0.4.33",
"@types/hapi__joi": "^16.0.0",
"@types/prompts": "^2.0.14",
"@types/react": "^16.9.9",
"@types/serve-handler": "^6.1.0",
"adm-zip": "^0.5.3",
"case": "^1.6.3",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"form-data": "^4.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.2.0",
"joi": "^17.2.1",
"jsdoc-api": "^7.1.0",
"jsonschema": "^1.4.0",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"node-fetch": "^2.6.0",
"ora": "^5.0.0",
"prismjs": "^1.25.0",
"prompts": "^2.4.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",
"webhead": "^1.1.3"
},
"optionalDependencies": {
"isolated-vm": "^4.0.0"
},
"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/"
]
}