-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.7 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": "@blackbox-vision/use-torch-light",
"version": "0.0.2",
"description": "A hook to enable/disable camera flash",
"scripts": {
"analyze": "source-map-explorer pkg/**/*.js pkg/**/*.js.map",
"clean": "rimraf pkg",
"build": "npm run clean && pika build",
"lint": "eslint --fix 'src/**'",
"publish": "pika publish",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlackBoxVision/use-torch-light.git"
},
"keywords": [
"react",
"torch",
"torchlight",
"react-hooks"
],
"author": "Jonatan Salas <jonatan.salas@blackbox-vision.tech>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlackBoxVision/use-torch-light/issues"
},
"homepage": "https://github.com/BlackBoxVision/use-torch-light#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@babel/preset-typescript": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@types/react": "^16.9.25",
"@types/w3c-image-capture": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^2.0.0",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.1",
"react-dom": "^16.13.1",
"source-map-explorer": "^2.4.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "~16",
"react-dom": "~16"
},
"dependencies": {},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,json,css,md,scss}": [
"prettier --write",
"git add"
]
}
}