This repository has been archived by the owner on Nov 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
91 lines (91 loc) · 3.1 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
{
"name": "catwalk",
"version": "1.0.0",
"description": "Get Qlik Associative Engine data model insights.",
"author": "QlikTech International AB",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/qlik-oss/catwalk"
},
"scripts": {
"build": "cross-env NODE_ENV=production parcel build src/index.html",
"parcel:build": "cross-env NODE_ENV=test parcel build src/index.html --no-minify",
"start": "parcel src/index.html --open",
"server:start": "http-server ./dist/ -p 1234",
"test:unit": "jest --config ./test/unit/jest.config.js",
"test:comp": "jest --config ./test/comp/jest.config.js",
"coverage:html": "nyc report -t ./coverage/.nyc_output -r html",
"lint": "eslint --ext .js,.jsx . && stylelint src/.",
"lint:fix": "eslint --ext .js,.jsx --fix . && stylelint --fix src/.",
"cy:open": "cypress open --project ./test/e2e",
"cy:run": "cypress run --project ./test/e2e",
"test:e2e:ci": "start-server-and-test server:start http://localhost:1234 cy:run",
"test:e2e:dev": "start-server-and-test start http://localhost:1234 cy:open"
},
"dependencies": {
"axios": "0.21.2",
"axios-cache-adapter": "2.7.3",
"axios-hooks": "3.0.0",
"copy-to-clipboard": "3.3.1",
"enigma.js": "2.7.3",
"hamus.js": "0.3.0",
"prop-types": "15.7.2",
"re-resizable": "6.9.0",
"react": "16.13.1",
"react-collapsible": "2.8.3",
"react-contexify": "5.0.0",
"react-dom": "17.0.2",
"react-floater": "0.7.3",
"react-gtm-module": "2.0.11",
"react-infinite-scroller": "1.2.4",
"react-joyride": "2.2.1",
"react-outside-click-handler": "1.3.0",
"react-svg-inline": "2.1.1",
"react-tabs": "4.0.1",
"react-use-promise": "0.4.1",
"react-virtualized": "9.22.3"
},
"devDependencies": {
"@babel/core": "7.15.0",
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-transform-async-to-generator": "7.14.5",
"@babel/plugin-transform-react-jsx": "7.14.9",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/preset-env": "7.15.0",
"@babel/preset-react": "7.14.5",
"@testing-library/cypress": "8.0.2",
"@testing-library/react": "12.1.2",
"autoprefixer": "10.3.3",
"babel-jest": "27.4.2",
"babel-plugin-import": "1.13.3",
"babel-plugin-istanbul": "6.0.0",
"cross-env": "7.0.3",
"cypress": "9.5.2",
"eslint": "8.12.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.24.0",
"fs-extra": "10.0.0",
"http-server": "14.0.0",
"jest": "27.4.2",
"jsdom": "19.0.0",
"nyc": "15.1.0",
"parcel-bundler": "^1.3.1",
"parcel-plugin-inlinesvg": "0.1.1",
"postcss-nested": "4.2.3",
"raf": "3.4.1",
"react-test-renderer": "17.0.2",
"start-server-and-test": "1.14.0",
"stylelint": "13.13.1",
"stylelint-config-standard": "22.0.0",
"stylelint-order": "5.0.0"
}
}