-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 KB
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
{
"name": "@bloomprotocol/qr",
"version": "2.0.1",
"description": "Canvas QR Renderer",
"main": "dist/index.js",
"module": "dist/qr.esm.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/hellobloom/qr",
"author": "Bloom Team <team@bloom.co>",
"license": "Apache-2.0",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch --tsconfig ./tsconfig.build.json",
"build": "tsdx build --tsconfig ./tsconfig.build.json",
"lint": "tsdx lint src stories",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"storybook": "start-storybook -p 9001"
},
"dependencies": {
"qr.js": "0.0.0",
"tslib": "^1.10.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@bloomprotocol/eslint-config": "^1.0.0-beta.1",
"@bloomprotocol/prettier-config": "^1.0.0-beta.1",
"@storybook/html": "^5.2.8",
"@storybook/react": "^5.2.8",
"@types/node": "*",
"@types/react": "^16.9.17",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"acorn": "^7.1.0",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"tsdx": "^0.12.1",
"typescript": "^3.7.4",
"webpack": "^4.41.5"
}
}