-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
{
"name": "@groceristar/shoplist-blocks-component",
"version": "1.0.15",
"description": "module to use blocks that are part of shoplist between projects",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": "https://github.com/GroceriStar/shoplist-blocks-component",
"author": "Arthur Tkachenko",
"license": "MIT",
"private": false,
"scripts": {
"bundle":"rollup -c",
"build": "babel src -d dist",
"build:test": "shx rm -rf && babel src -d dist",
"#prepare": "yarn clean",
"clean": "shx rm -rf ./coverage && shx rm -rf ./dist",
"lint": "eslint src",
"zprepublish": "yarn clean && yarn build",
"test": "CI=true && jest",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"code-fix": "standard --fix"
},
"devDependencies": {
"@babel/cli": "7.7.7",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"babel-plugin-module-resolver": "^3.1.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.9.1",
"jest": "^24.1.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"regenerator-runtime": "^0.13.1",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"shx": "^0.3.2",
"standard": "^12.0.1"
},
"dependencies": {
"@groceristar/groceristar-fetch": "^2.1.10",
"@groceristar/grocery-component": "^1.0.9",
"antd": "^3.13.2",
"lodash": "^4.17.11",
"react-dnd": "^8.0.0",
"react-dnd-html5-backend": "^8.0.0",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"reactstrap": "^8.0.0",
"shortid": "^2.2.14",
"uuid": "^3.3.2"
},
"peerDependencies": {
"react": "^16.8.1",
"react-dom": "^16.8.1"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
]
}