This repository has been archived by the owner on Aug 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
100 lines (100 loc) · 3.31 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
93
94
95
96
97
98
99
100
{
"name": "frictionless-components",
"version": "1.3.4",
"license": "MIT",
"author": "roll <[email protected]>",
"description": "Data integration components for TypeScript/React that implement Frictionless Data concepts in visual UI.",
"homepage": "https://github.com/frictionlessdata/frictionless-ui",
"bugs": "https://github.com/frictionlessdata/frictionless-ui/issues",
"repository": "github:frictionlessdata/frictionless-ui",
"main": "lib/index.js",
"engines": {
"node": ">=4"
},
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"analyze": "NODE_ENV=production webpack --profile --json | webpack-bundle-size-analyzer",
"build": "npm run compile && npm run bundle",
"bundle": "rm -rf dist && webpack --progress && NODE_ENV=production webpack --progress",
"compile": "rm -rf lib && tsc && cp -r src/images lib && cp -r src/styles lib",
"docs": "build-storybook -o build",
"start": "start-storybook -p 6006",
"e2e": "cypress run",
"format": "prettier --write '{src,test}/**/*.ts*' && eslint --fix '{src,test}/**/*.ts*'",
"lint": "prettier --check '{src,test}/**/*.ts*' && eslint '{src,test}/**/*.ts*'",
"pretest": "npm run lint",
"readme": "doctoc --maxlevel 3 README.md",
"test": "jest --coverage",
"update": "ncu -u"
},
"dependencies": {
"@types/lodash": "^4.14.168",
"@types/marked": "^2.0.1",
"@types/uuid": "^8.3.0",
"classnames": "^2.3.1",
"jsonschema": "^1.4.0",
"jszip": "^3.6.0",
"lodash": "^4.17.21",
"marked": "^2.0.1",
"react-sortable-hoc": "^2.0.0",
"tableschema": "^1.12.4",
"use-async-effect": "^2.2.3",
"uuid": "^8.3.2"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"@storybook/theming": "^6.2.9",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.22",
"@types/node-fetch": "^2.5.10",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-loader": "^8.2.2",
"compression-webpack-plugin": "^6.0.5",
"css-loader": "^5.2.0",
"cypress": "^7.0.1",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-standard": "^5.0.0",
"file-loader": "^6.2.0",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.4.1",
"node-fetch": "^2.6.1",
"npm-check-updates": "^11.4.1",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-test-renderer": "^17.0.2",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^4.46.0",
"webpack-bundle-size-analyzer": "^3.1.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}