-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 2.91 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
{
"name": "@groceristar/pdf-export",
"version": "1.2.2",
"description": "module to use pdf-export feature between projects",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": "https://github.com/GroceriStar/pdf-export-component",
"author": "Arthur Tkachenko",
"license": "MIT",
"private": false,
"engines": {
"npm": ">=3.0.0",
"node": ">=6.0.0"
},
"scripts": {
"prebuild": "npm run std --silent",
"build": "rollup -c config/production.js",
"prebuild:dev": "npm run std",
"build:dev": "rollup -c config/dev.js -w",
"browse": "browser-sync start --s --ss build --index html/index-dev.html --files html/**/*.html,build/**/*.js --no-notify",
"start": "npm-run-all --parallel build:dev browse",
"std": "standard --verbose | snazzy",
"test:build-dev": "npm run build:dev",
"test": "CI=true && jest",
"preversion": "git pull && npm up && npm run std --silent",
"version": "npm run build && git add -A .",
"postversion": "git push --tags origin HEAD",
"clean": "shx rm -rf ./coverage && shx rm -rf ./dist",
"prepublish": "yarn clean && yarn build",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"code-fix": "standard --fix",
"babelBuild": "babel src -d dist",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-decorators": "7.8.3",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-react-jsx-compat": "7.8.3",
"@babel/plugin-transform-react-jsx-self": "7.9.0",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.4",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-module-resolver": "4.1.0",
"browser-sync": "2.26.14",
"coveralls": "3.0.11",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"jest": "28.1.0",
"npm-run-all": "4.1.5",
"react": "18.1.0",
"react-dom": "18.1.0",
"rollup": "2.46.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-uglify": "6.0.4",
"rollup-watch": "4.3.1",
"shx": "0.3.4",
"snazzy": "9.0.0",
"standard": "17.0.0"
},
"peerDependencies": {
"react": "^16.8.4 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/cli": "^7.4.4",
"@react-pdf/renderer": "^2.1.2",
"antd": "^4.0.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^8.0.0",
"uuid": "^8.0.0",
"snyk": "^1.465.0"
},
"standard": {
"ignore": [
"build"
]
},
"snyk": true
}