-
Notifications
You must be signed in to change notification settings - Fork 0
/
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/antd-second-component",
"version": "1.0.0",
"description": "module to use ...",
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"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=test && jest",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"code-fix": "standard --fix",
"build": "yarn build:clean; rollup -c",
"build:clean": "rm -rf ./dist; mkdir ./dist",
"dev": "yarn build; yarn watch",
"watch": "chokidar 'src/**/*.ts' 'src/**/*.tsx' -c \"yarn build\""
},
"devDependencies": {
"@babel/cli": "7.7.5",
"@babel/core": "7.7.5",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/preset-env": "7.7.5",
"@babel/preset-react": "7.7.4",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "25.1.0",
"babel-plugin-module-resolver": "3.2.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"jest": "25.1.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"regenerator-runtime": "0.13.3",
"rollup": "1.27.12",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"shx": "0.3.2",
"standard": "13.1.0"
},
"dependencies": {
"@groceristar/groceristar-fetch": "^2.2.0",
"antd": "^3.20.7",
"lodash": "^4.17.15",
"react-router": "^5.1.2",
"react-router-dom": "^5.0.1",
"shortid": "^2.2.14",
"uuid": "^3.3.3"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": "https://github.com/GroceriStar/antd-second-components",
"author": "Arthur Tkachenko",
"license": "MIT",
"private": false
}