-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.03 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.03 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "qreet-react",
"version": "1.0.0",
"description": "Standard pro snadné zpracování údajů na účtenkách registrovaných v systému EET.",
"keywords": [
"react",
"qr-code",
"eet",
"uctenkovka"
],
"author": {
"name": "Michal Hájek",
"email": "mikrop@centrum.cz"
},
"scripts": {
"demo": "cd demo && yarn start",
"demo:build": "cd demo && yarn run build",
"demo:deploy": "gh-pages -d demo/build",
"storybook-web": "cd ./storybooks/web && npm run storybook",
"storybook-native-watch": "babel ./src --out-dir=./storybooks/native/lib --watch",
"storybook-ios": "cd ./storybooks/native && npm run ios",
"storybook-android": "cd ./storybooks/native && npm run android",
"clean": "rimraf lib",
"lint": "eslint src",
"test": "mocha --recursive --require babel-core/register",
"build": "npm run lint && npm test && npm run clean && babel src --out-dir lib"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:mikrop/qreet-react.git"
},
"files": [
"lib"
],
"main": "lib/index.js",
"dependencies": {
"prop-types": "^15.6.2",
"qr.js": "0.0.0",
"react-art-svg-renderer": "^0.0.1-rc.8"
},
"peerDependencies": {
"react": "^16.7.0",
"react-native": "^0.62.3"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.10.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.23.0",
"chai": "^4.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"gh-pages": "^2.0.1",
"jsdom": "^15.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^6.0.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-native": "^0.61.0",
"react-test-renderer": "^16.7.0",
"rimraf": "^3.0.0"
}
}